You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Augusto b1481aef66 Add exercise `looping` 4 years ago
..
README.md Add exercise `looping` 4 years ago

README.md

looping

Instructions

Write a program that prints a riddle, receives input from the user and checks that the answer is correct

The program must allow indefinite number of trials and only quit after the correct answer is given

Every time the user introduces an incorrect answer the program must print the riddle again and after the user gives the correct answer the program must print the number of tries that took to get the correct answer

Riddle: I am the beginning of the end, and the end of time and space. I am essential to creation, and I surround every place. What am I?

Answer: The letter e

Usage

$ cargo run
I am the beginning of the end, and the end of time and space. I am essential to creation, and I surround every place. What am I?
I don't know
I am the beginning of the end, and the end of time and space. I am essential to creation, and I surround every place. What am I?
The letter e
It took you 2 trials to get the right answer
$