Facebook
From Anorexic Tern, 2 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 126
  1. using System;
  2.  
  3. namespace ExcelentResult
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.  
  10.             double grade = double.Parse(Console.ReadLine());
  11.  
  12.             if (grade >= 5.50)
  13.             {
  14.                 Console.WriteLine("Excellent!");
  15.             }
  16.  
  17.             if (grade >= 6)
  18.             {
  19.                 Console.WriteLine("You cant be that good");
  20.             }
  21.  
  22.             if (grade <= 2)
  23.             {
  24.                 Console.WriteLine("umm you cant be that bad");
  25.             }
  26.  
  27.  
  28.  
  29.  
  30.  
  31.         }
  32.     }
  33. }
  34.