Files
c-sharp/MinMax/Program.cs

20 lines
409 B
C#
Raw Normal View History

2022-02-14 13:05:20 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MinMax {
2022-05-31 08:46:10 +02:00
public class Program {
public static void Main(string[] args) {
2022-02-14 13:05:20 +01:00
2022-05-31 08:46:10 +02:00
Adat adat = new Adat();
2022-02-14 13:05:20 +01:00
2022-05-31 08:46:10 +02:00
Console.WriteLine("Min: " + adat.min());
Console.WriteLine("Max: " + adat.max());
2022-02-14 13:05:20 +01:00
Console.ReadKey();
}
}
}