Advertisement
KirillKorobka

Untitled

Nov 13th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. using System;
  2.  
  3. namespace itvdnCourse
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9.  
  10. Console.WriteLine("Take your medal");
  11. int a = int.Parse(Console.ReadLine());
  12.  
  13. if (a <= 3)
  14. {
  15. Console.WriteLine("You loose!");
  16. }
  17. if (a > 3 && a < 5)
  18. {
  19. Console.WriteLine("Bronze medal!");
  20. }
  21. if (a > 4 && a < 6)
  22. {
  23. Console.WriteLine("Silver medal!");
  24. }
  25. if (a > 6 && a < 8)
  26. {
  27. Console.WriteLine("Gold medal!");
  28. Console.WriteLine("Congratulations!!!");
  29. }
  30. Console.WriteLine("End program.");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement