Software Downloads for "Number Guessing Game Circuit"

This is a magic number guessing game. You think of a number below 63, and then this game will tell you what your secret number is. Coded in C++.

  • Platform: C & C++, Scripts
  • Publisher: Krishna Khanna
  • Date: 07-01-2011

A short number guessing game.

This Java applet implements a fun number guessing game. Number of digits, title text, colors, fonts, and buttons are all customizable..

  • Platform: Java, Scripts
  • Publisher: thejmaker.com
  • Date: 12-03-2011

HiLower game is a number guessing game where the faster you guess the higher score you get. Uses text files and no datebase required. Easy to install..

  • Platform: PHP, Scripts
  • Publisher: bananiel.nl
  • Date: 25-07-2011

This is a number guessing game script which let users to guess/pick a number between 1 and 100. This example script written in PHP demonstrates the usage of sessions..

  • Platform: PHP, Scripts
  • Publisher: blazonry.com
  • Date: 02-11-2011

This is a verbal version of the classic number guessing game Cows and Bulls. Instead of guessing four-digit numbers, you guess valid four-letter words. This game is built in .NET and runs in Windows and Linux (using Mono).
No installation necessary, just unzip and run., Multi-platform - Runs on Windows and Linux, Should run on Mac also if Mono is installed
Cows n Bulls License - GNU General Public License version 3.0 (GPLv3).

  • Platform: Linux, Windows
  • Publisher: Cowsnbulls
  • Date:
  • Size: 106 KB

NIM: Number in a minute uses the concept of a common and well known game, the Number Guessing game, but with a twist. Players are to solve as many puzzles as possible within a minute.

The difficulty gets higher as the range gets wider, from 0-20, to 0-50, followed by 0-100 and so on. There are 18 puzzles per new game created currently.

Current features are limited on playing locally, but more features will be added very soon! Stay tuned!

.

  • Platform: Android 2.x, Android 3.x, Android 4.4, Android 4.x
  • Publisher: Ferdy AR-Entertainment
  • Date: 08-04-2014
  • Size: 544 KB

Guessing Game 6.0. This game operates in GUI. There are now four difficulty levels: Easy, Medium, Hard, and Suicide. To give you an idea of perspective, I can beat Easy in about three minutes, and I've never beat the first level of Suicide..

1to19 is simple, interesting and fun number puzzle game.

All you have to do is to find pairs of identical numbers or numbers with sum equal to 10 to erase them.

To erase numbers, they have to be on the same level horizontally or vertically and between them should not be the other numbers.

In game you will find two modes:

Classic Mode

Your Goal is very simple – clear all the numbers from the field in 50 moves.

There is a rumor that the game can be completed in 36 moves. Can you beat it?

Remember:

- add number lines, but when it reach the bottom you can lose;

- clear twenty identical numbers and get extra points by clearing bonus numbers;

- use boosters to improve your results.

  • Platform: Android 2.x, Android 3.x, Android 4.4, Android 4.x
  • Publisher: ELVES GAMES SIA
  • Date: 09-12-2014
  • Size: 27648 KB

Fun and addictive mobile version of 2048 game and most perfect 2048 number puzzle game for Android!
Explore deep challenge for your mind!

-HOW TO PLAY-
Swipe to move the tiles, when two tiles with the same number touch, they merge into one. When a 2048 tile is created, the player wins! 8 .. 16 ... 1024 .. 2048

[GAME FEATURES AND ADVANTAGES]
+ Super 2048 Multiplayer mode
+ Game is automatically autosaved
+ Three unique game modes
+ Unlimited Undo mode
+ Survival Time mode
+ X-tile mode
+ Night theme for playing in bed
+ Leaderboards & Achievements
+ Crispy sounds and settings
+ Animation controls
+ Beautiful and simple UI
+ Easy share with friends option
+ Keep playing for High-score after collected 2048 tile
+ Game supports all android 2.

Welcome to the Guess-a-Number Game - An online guessing game for visitors. Guess-a-Number is a raffle-type system. It allows people to pick a number from a list, and on a pre-specified date, the administrator will run the random number selector, which will log and display the lucky guessers. Includes numerous options & features.Web developers, attract and keep your visitors at your site. Better yet, give them a reason to bookmark your site; a reason to come back ... to see if they've won! Directions for setting up the Guess-a-Number Game are provided in the customization file.

If you love a challenge and would like to see how accurate you are – this is a game for you. You will see many images and objects on the screen and will be asked to guess the correct number of them. The more accurate you are – the better result (score) you will get.

So start guessing and competing against your friends.

.

  • Platform: Android 2.x, Android 3.x, Android 4.4, Android 4.x
  • Publisher: Nyx Digital
  • Date: 20-11-2014
  • Size: 35840 KB

Hangman for mobile (touch) is a classic word guessing game. The mobile phone thinks of a word and you need to guess it by suggesting letters. The word to guess is represented by a row of dashes, giving the number of letters. If you suggest a letter which occurs in the word, it will be written in all its correct positions. If the suggested letter does not occur in the word, mobile phone draws one element of the hangman diagram as a tally mark. The game is over when; (a) The guessing player completes the word, or guesses the whole word correctly.

  • Platform: Windows
  • Publisher: wapfrog.com
  • Date: 19-04-2011
  • Size: 54 KB

Free Hangman Game is a smal popular word guessing game where have to guess the word by picking the letter. Here are hundreds of words to guess in this game you\'ll never get bored. You get seven chances to guess the mystery word. If you correctly identifies all the letters of the missing word or after a certain number of incorrect guesses, the game is over..

  • Platform: Windows
  • Publisher: 3dfishgame
  • Date: 16-03-2015
  • Size: 4218 KB

Kakuro Cross Sums is the puzzle world's best-kept secret. Called Cross Sums in the USA, Kakuro in the UK, and Kakro in Japan, it's a fun, entertaining and highly addictive number puzzle game that will challenge and perplex you. The rules are simple, but completing a puzzle takes practice and concentration. Play unlimited Kakuro Cross Sums on your PC with our easy to use software - you'll never want to go back to using paper and pencil! Features: An almost unlimited supply of Kakuro Cross Sums.

This is a Number-puzzle game in which the elements on the screen should be sorted in ascending order (top to bottom)using arrow-keys..

  • Platform: C and C plus plus, Scripts
  • Publisher: u.srinivas
  • Date: 26-03-2013
  • Size: 10 KB

A recursive algorithm that queries an objective function to guess an unknown integer. An integer guessing 'game' for a function `isleq', that returns true for all values less than or equal to a mystery number. Syntax: z=guessgame(isleq,n,k) In tertiary function notation: g(n,k) = | k==0 :: isleq(n) ? n : n+1; | k>0 :: isleq(n+(2^k)-1) ? g(n,k-1) : g(n+2^k,k-1); | k<0 :: isleq(n+(2^(-k))-1) ? g(n,(-k)-1) : g(n+(2^(-k)),k-1); g(n,-k) for -k negative refers to an unbounded search [n,inf] with current search depth up to (n+2^(-k)-1) : e.

  • Platform: Matlab, Scripts
  • Publisher: Adam Gripton
  • Date: 22-06-2013
  • Size: 10 KB

This is a simple guessing game. A number from 1 to 15 will be displayed on the screen. You have to guess whether the next number will be Hi or Low. Lets see how big a combo you can do..

  • Platform: Windows
  • Publisher: Rishab Saraf
  • Date:
  • Size: 1024 KB

Play the Free version of Bullets and Maggots, the next generation code guessing game! Bullets and Maggots is a fun and challenging game where you try to guess a number or word code that your friend created, before they guess your code.

FEATURES
•Play number or word games 4, 5, 6, or 7 characters in length
•Turn-based game allows you to play at your own pace
•Play up to 21 games at the same time
•Connect to Facebook and Twitter to play your friends and followers
•Challenge random opponents
•Each guess reveals clues to help you win
•See all prior guesses and results to help you figure out the code
•Change the colors of numbers or letters for additional strategy
•Take Notes to help you guess the code faster
•See overall records and points vs.

  • Platform: Android 2.x, Android 3.x, Android 4.4, Android 4.x
  • Publisher: Rem Tech, LLC
  • Date: 24-03-2014
  • Size: 14336 KB

Play the No Ads version of Bullets and Maggots, the next generation code guessing game! Bullets and Maggots is a fun and challenging game where you try to guess a number or word code that your friend created, before they guess your code.

FEATURES
•Play number or word games 4, 5, 6, or 7 characters in length
•Turn-based game allows you to play at your own pace
•Play up to 21 games at the same time
•Connect to Facebook and Twitter to play your friends and followers
•Challenge random opponents
•Each guess reveals clues to help you win
•See all prior guesses and results to help you figure out the code
•Change the colors of numbers or letters for additional strategy
•Take Notes to help you guess the code faster
•See overall records and points vs.

  • Platform: Android 2.x, Android 3.x, Android 4.4, Android 4.x
  • Publisher: Rem Tech, LLC
  • Date: 21-10-2014
  • Size: 14336 KB
New Reviews


Print Inspector

Whether you are using a printer connected to your local desktop computer or a print server sometimes you need to see whats going on in your printer by having a close look at the print jobs sent by the users. Print Inspector is such type software ...


Disk Genius

Disk Genius was formerly known as Partition Guru which is an all-in-one solution for disk partition management, data recovery and disk repairing. It can recover lost files from partition, backup and restore partition table, clone partition or clone ...


Safe In Cloud

It is quite difficult to find any computer users nowadays who do not need to use the web, for any purpose. Whether it is for education or entertainment, the web is your best resource. You also need to use various online services for banking, ...


PictBear

Nowadays, a majority of PC users resort to digital image editing once in a while. It may be required for retouching image captured in smart phones or for creating an album in Facebook. For some people, tinkering with digital images is a pastime too. ...


Panda Cloud Cleaner

PC security has become a tricky and complicated subject both for home users and network supervisors, with complexity and risk factors multiplying over the years. Using a single antivirus app may not be enough anymore. That explains why many users ...


SnapCrab

Nearly every PC users need to take screenshots from time to time, whether it is for personal or professional needs. While using the basic Windows screenshot capture method is available, it is not adequate for everyone. When you want to capture ...


BitKiller

Dealing with various types of data efficiently holds the key to success in any computing task. Apart from generating new data and modifying existing files, it becomes necessary to delete existing files at times. While most users resort to using ...


SeaMonkey, Portable Edition

Using the Internet has become a necessity for a majority of people, including those who do not use a PC regularly. To browse web, stream video or download online content, people often resort to using various third party apps. For example, using ...


TuckAway Intelligent Email Organizer Pro

Using an email software allow you to do a number of things including managing your address lists, emails and even ending memos, documents and even virtual letters. You can also use it to manage your tasks easily. The email software comes in ...


WebAcappella

Web design sector has witnessed several trends and technological innovations affect website development in big ways. With time, designing websites has become easier. Nowadays, you can find web design software that nearly eliminates the need to ...


New Downloads

WinTools.net Classic

Suite of tools for increasing
operating system performance.
WinTools.net cleanly removes
software from disk drives and
...

Voxal Voice Changer Free
for Mac

Voxal is free voice changer
software for Mac designed to
enhance any game or
application that uses a
microphone. Change ...

Spool Queue Viewer++

Spool Queue Viewer++ is a
feature rich spool queue
viewer that windows should
have by default, we have taken
it to the ...

Project Timer

Project Timer, a project timer
for the Windows taskbar
notification area. Project
Timer is a simple but powerful
windows ...

Easy Card Creator Express

The ideal choice for small to
medium sized organizations and
individuals looking for an
affordable photo ID card ...

Security Monitor Pro

Video Surveillance with
multiple IP or USB cameras.
Monitor and record from
multiple cameras
simultaneously, create ...

PhotoPad Pro Edition for
Mac

PhotoPad Pro Edition for Mac
Editing Software allows you to
easily edit digital photos and
other pictures. PhotoPad Pro
...

Prism Plus Edition

Prism Plus Edition for Windows
is the most comprehensive and
stable multi-format video
converter available. You can
...

RationalPlan Project Viewer

RationalPlan Project Viewer is
a free project planning
software viewer, the perfect
solution for anyone (from
project ...

Aml Maple

Aml Maple has a new kind of
view on keyboard layout
indicators: simple, modern,
flexible. In addition, you can
change the ...