DEV Community

Ivan Ivanov
Ivan Ivanov

Posted on

1. Excellent Result

using System;

namespace Excellent_Result
{
internal class Program
{
    static void Main(string[] args)
    {
        double evaluation = double.Parse(Console.ReadLine());

        double honor = 5.50;

        if (evaluation >= honor)
        {
            Console.WriteLine("Excellent!");
        }
    }
}
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)