Advertisement
Spocoman

02. Grades

Jan 24th, 2022
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.83 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Grades
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double grade = double.Parse(Console.ReadLine());
  10.             Print(grade);
  11.         }
  12.  
  13.         static void Print(double grade)
  14.         {
  15.             if (grade <= 2.99)
  16.             {
  17.                 Console.WriteLine("Fail");
  18.             }
  19.             else if (grade <= 3.49)
  20.             {
  21.                 Console.WriteLine($"Poor");
  22.             }
  23.             else if (grade <= 4.49)
  24.             {
  25.                 Console.WriteLine("Good");
  26.             }
  27.             else if (grade <= 5.49)
  28.             {
  29.                 Console.WriteLine("Very good");
  30.             }
  31.             else if(grade <= 6)
  32.             {
  33.                 Console.WriteLine("Excellent");
  34.             }
  35.         }
  36.     }
  37. }
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement