Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. sing System;
  2.  
  3. namespace busfares
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Console.WriteLine("Please enter your age: ");
  10. int age = Convert.ToInt32(Console.ReadLine());
  11.  
  12. if (age > 65) Console.WriteLine("You are elidigble for a free ticket");
  13. else age
  14.  
  15.  
  16. //if (age < 16) Console.WriteLine("You are elidigible for 30% off your fare");
  17.  
  18.  
  19.  
  20. //if (age > 110) Console.WriteLine("Please input a valid age between 10 - 110:");
  21. }
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement