Spocoman

06. Max Number

Nov 20th, 2021 (edited)
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 KB | None | 0 0
  1. using System;
  2.  
  3. namespace MaxNumber
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string num = Console.ReadLine();
  10.             int bigNum = int.MinValue;
  11.            
  12.             while (num != "Stop")
  13.             {
  14.                 int n = int.Parse(num);
  15.                 if (n > bigNum)
  16.                 {
  17.                     bigNum = n;
  18.                 }
  19.                
  20.                 num = Console.ReadLine();
  21.             }
  22.             Console.WriteLine(bigNum);
  23.         }
  24.     }
  25. }
  26.  
Add Comment
Please, Sign In to add comment