Advertisement
Shtiler

2020 Bizoa Mutne Task #1

Sep 26th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApp5
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. int num1;
  14. Console.WriteLine("Please Enter Your Grade");
  15. num1 = int.Parse(Console.ReadLine());
  16. bool Grade = (num1 > 80);
  17. if (Grade)
  18. {
  19. Console.WriteLine("Good" , num1,80);
  20. }
  21. else
  22. {
  23. Console.WriteLine("You're Kicked From School", num1,80);
  24. }
  25. Console.ReadLine();
  26. }
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement