Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Max_Number
- {
- class Program
- {
- static void Main(string[] args)
- {
- int Count = int.Parse(Console.ReadLine());
- int Max = int.MinValue;
- while(Count!=0)
- {
- int Number = int.Parse(Console.ReadLine());
- if(Number>Max)
- {
- Max = Number;
- }
- Count--;
- }
- Console.WriteLine(Max);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment