int[] x = new int[50]; for (int i = 0; i < x.Length; i++) { x[i] = i * 2 - 10; } foreach (int item in x) { Console.Write(item.ToString() + ";"); } Console.WriteLine(""); Console.WriteLine(""); long[] y = new long[20]; for (int i = 0; i < y.Length; i++) { y[i] = Convert.ToInt64(Math.Pow(Convert.ToDouble(i + 1), 3)); } foreach (long item in y) { Console.Write(item.ToString() + ";"); } Console.ReadLine();
код программы и пример работы
Вот фрагмент программы на Паскале:
Write (' d = ');
ReadLn (d);
L:=3.14*d;
WriteLn( ' L = ', L);
Задания 19 и 20 должны выполняться с помощью компьютера.