public static void swap(ref double First, ref double Second)
public static int min(params int[] mas)
public static int Fact(int x) { return x <= 1 ? 1 : x * Fact(x - 1); }
public static void Main(string[] args)
Console.WriteLine("Значение в переменной d = "+d + "\n" + "Значение в переменной d2 = "+ d2);
Console.WriteLine("Значение в переменной d = " + d + "\n" + "Значение в переменной d2 = " + d2);
Console.WriteLine(min(1,-23,4,1));
Console.WriteLine(min(0,2));
Console.WriteLine(min(0,-5));
Console.WriteLine(Fact(6));