Advertisement
Alexander_B

Max Number

Feb 16th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace DomashnoMaxNumber
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. int n = int.Parse(Console.ReadLine());
  14.  
  15. int print = int.MinValue;
  16.  
  17. for(int i = 0; i < n; i++)
  18. {
  19. int input = int.Parse(Console.ReadLine());
  20.  
  21. if (input > print)
  22. {
  23. print = input;
  24. }
  25. }
  26.  
  27. Console.WriteLine(print);
  28. }
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement