Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. Console.WriteLine("Enter:");
  2.  
  3. string reply = Console.ReadLine();
  4. while (reply != "T" && reply != "F")
  5. {
  6. Console.WriteLine("Invalid");
  7. reply = Console.ReadLine();
  8. }
  9. if (reply == "T")
  10. {
  11. Console.WriteLine("true");
  12. Console.ReadLine();
  13. }
  14. else if (reply == "F")
  15. {
  16. Console.WriteLine("true");
  17. Console.ReadLine();
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement