Advertisement
Spocoman

08. Graduation

Nov 23rd, 2021 (edited)
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.05 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Graduation
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string name = Console.ReadLine();
  10.             double sumGrades = 0;
  11.             int counter = 1;
  12.             int fail = 0;
  13.  
  14.             while (counter <= 12)
  15.             {
  16.                 double grade = double.Parse(Console.ReadLine());
  17.  
  18.                 if (grade >= 4)
  19.                 {
  20.                     sumGrades += grade;
  21.                     counter++;
  22.                     if (counter == 13)
  23.                     {
  24.                         Console.WriteLine($"{name} graduated. Average grade: {sumGrades / 12:F2}");
  25.                         break;
  26.                     }
  27.                 }
  28.                 else
  29.                 {
  30.                     fail++;
  31.                     if (fail == 2)
  32.                     {
  33.                         Console.WriteLine($"{name} has been excluded at {counter} grade");
  34.                         break;
  35.                     }
  36.                 }
  37.             }
  38.         }
  39.     }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement