Advertisement
Kuncavia

ExcellentResult

Sep 14th, 2016
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.22 KB | None | 0 0
  1. using System;
  2.  
  3. class ExcellentResult
  4. {
  5.     static void Main(string[] args)
  6.     {
  7.         var grade = double.Parse(Console.ReadLine());
  8.         if (grade >= 5.50)
  9.             Console.WriteLine("Exellent!");
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement