Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. using System;
  2.  
  3. namespace yeet
  4. {
  5. class MainClass
  6. {
  7. public static void Main(string[] args)
  8. {
  9. int a = 1;
  10. int b = 2;
  11. int c = 3;
  12.  
  13. if (a > b && a > c)
  14. {
  15. Console.WriteLine(a);
  16. }
  17.  
  18. if (b > a && b > c)
  19. {
  20. Console.WriteLine(b);
  21. }
  22.  
  23. if (c > a && c > b)
  24. {
  25. Console.WriteLine(c);
  26. }
  27.  
  28.  
  29.  
  30. }
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement