Сформуйте одновимірний масив як сума рядків двовимірний масив -
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace array { class Program { static void Main(string[] args) { Console.Write("Введите n: "); int n = Convert.ToInt16(Console.ReadLine()); Console.Write("Введите m: "); int m = Convert.ToInt16(Console.ReadLine()); int[,] Matrix = new int[n, m]; int[] summ = new int[n]; //Заполняем случайными числами от 0 до 100 Random random = new Random(); int rand; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { rand = random.Next(0, 100); Matrix[i, j] = rand; } } for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { Console.Write(Matrix[i, j] + "\t"); } Console.WriteLine(); } for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) summ[i] += Matrix[i, j]; Console.WriteLine("Суммa " + i + " строки: " + summ[i]); } Console.ReadKey(); } } }
Вивести всі парні числа з діапазону
using System; using System.Collections.Generic; using System.Linq; class Program { static void Main(string[] args) { Console.Write("Write number 1: "); int n = int.Parse(Console.ReadLine()); Console.Write("Write number 2: "); int m = int.Parse(Console.ReadLine()); for (int i = n; i <= m; i++) { if (i % 2 == 0) { Console.Write(i + " "); } } Console.ReadKey(); }
}
Комментариев нет:
Отправить комментарий