Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 453 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 453 Bytes

My first Java project ✨

It's simple. The program will 'generate' a random number between 0 (included) and 101 (not included):

int randomNumber = (int)(Math.random() * 101); // 🤓

While you do not enter the right number, the program will be executed. 💻


Clone this repository: 🤖

git clone https://github.com/Gustanol/guess_the_secret_number.git

Execute the program: 😎

java Main.java