Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ExcellentResult
- {
- class Program
- {
- static void Main()
- {
- double grade = double.Parse(Console.ReadLine());
- if (grade >= 5.50)
- {
- Console.WriteLine("Excellent!");
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment