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 Min = int.MaxValue;
- while (Count > 0)
- {
- int Number = int.Parse(Console.ReadLine());
- if (Number < Min)
- {
- Min = Number;
- }
- Count--;
- }
- Console.WriteLine(Min);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment