Guest User

Untitled

a guest
Jun 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. nbr_cache = rand(100)
  2. nbr_entre = -1
  3.  
  4. while (nbr_entre != nbr_cache)
  5.  
  6. puts "Entrez un nombre... "
  7. nbr_entre = gets.chomp.to_i
  8.  
  9. if (nbr_cache > nbr_entre)
  10. then puts "C'est plus grand !"
  11. elsif (nbr_cache < nbr_entre)
  12. puts "C'est plus petit !"
  13. else
  14. puts "Bravo !"
  15. end
  16. end
Add Comment
Please, Sign In to add comment