https://github.com/maihannijat/guessingnumber
Guessing number game using C# (console base)
https://github.com/maihannijat/guessingnumber
console console-application csharp game guessing-number-game number-guessing-game
Last synced: about 1 month ago
JSON representation
Guessing number game using C# (console base)
- Host: GitHub
- URL: https://github.com/maihannijat/guessingnumber
- Owner: maihannijat
- License: apache-2.0
- Created: 2017-10-03T12:47:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-04T01:01:24.000Z (over 7 years ago)
- Last Synced: 2025-01-30T05:15:23.805Z (3 months ago)
- Topics: console, console-application, csharp, game, guessing-number-game, number-guessing-game
- Language: C#
- Homepage: http://www.sunzala.com
- Size: 12.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Guessing Number Game
## Console BaseA simple number guessing game using C#.
The rules of this game are simple:
- Giving a user 7 chances to guess a randomly generated whole number between 1 and 100.
- The program begins by randomly generating a number between 1 and 100.
- The random number is winning number used to compare against users input.
- Game prompts user for inputThe game is based on Visual Basic and all code is available in program.cs file.