Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 323 Bytes

File metadata and controls

14 lines (12 loc) · 323 Bytes

Project 04: Guess the Number Game

Objective

Create a simple CLI game where:

  • Computer randomly selects a number.
  • User tries to guess it.
  • Program gives hints (too high / too low).
  • Game ends when the correct number is guessed.

Concepts Used

  • Random number generation
  • Loops
  • Conditionals
  • Input handling