Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _01._Excellent_Grade
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- //1. оценка (дробно число) -> входни данни
- //2. проверка оценка >= 5.50 -> "Excellent!"
- double grade = double.Parse(Console.ReadLine());
- if (grade >= 5.50)
- {
- Console.WriteLine("Excellent!");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement