An open API service indexing awesome lists of open source software.

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)

Awesome Lists containing this project

README

        

# Guessing Number Game
## Console Base

A 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 input

The game is based on Visual Basic and all code is available in program.cs file.