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