Advertisement
SvetoslavUzunov

Max

Feb 15th, 2021
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace ProgramCS
  5. {
  6.     class Program
  7.     {
  8.         static void Main()
  9.         {
  10.             //input
  11.             int[] num = { 1, 2, 3, 4, 5 };
  12.             int max = num.Max();
  13.             Console.WriteLine(max);
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement