eo
Size: a a a
eo
МК
eo
using System;
using System.Linq;
public class Program
{
public static void Main()
{
int[] myArray1 = new int[3] { 7, 3, 5 };
int[] myArray2 = new int[3] { 15, 20, 40 };
int[] myArray3 = new int[3] { 300, 550, 137 };
Console.WriteLine(myArray1.Min());
Console.WriteLine(myArray2.Min());
Console.WriteLine(myArray3.Min());
for (int i = 0; i < Math.Min(Math.Min(myArray1.Length, myArray2.Length), myArray3.Length); i++)
{
Console.WriteLine(Math.Min(Math.Min(myArray1[i], myArray2[i]), myArray3[i]));
}
}
}
МК
МК
eo
твой код
МК
МК
eo
eo
МК
МК
MK
VS
MK
VS
МК
МК