Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _03._Passed_or_Failed
- {
- class Program
- {
- static void Main(string[] args)
- {
- double grade = double.Parse(Console.ReadLine());
- if (grade > 2.99)
- {
- Console.WriteLine("Passed!");
- }
- else
- {
- Console.WriteLine("Failed!");
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment