Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 467 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 467 Bytes

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.