Advertisement
Guest User

Untitled

a guest
Apr 26th, 2014
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
D 0.21 KB | None | 0 0
  1. while ((count_r <= 0) || (count_r >= 101))
  2. {
  3.     write("\nHow many rounds ? Between 1 and 100.\n>");
  4.     readf(" %s",&count_r);
  5.                
  6.     if ((count_r <= 0) || (count_r >= 101))
  7.     {
  8.         write("\nInvalid choice.\n>");
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement