Advertisement
Hamiresss

o1

Jul 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. namespace looping01
  2. {
  3. class Program
  4. {
  5. public static void Main(string[] args)
  6. {
  7. int age = 42;
  8. double money = 540;
  9. if(age > 18 && money > 100) {
  10. Console.WriteLine("Welcome");
  11. }
  12.  
  13. Console.Write("Press any key to continue . . . ");
  14. Console.ReadKey(true);
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement