Вывод определенного массива на экран - C#
Формулировка задачи:
Добрый день. Как вывести на экран только 3-й массив там где число 100 ?
using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication5 { class Program { static void Main(string[] args) { int[] myArr = new int[1]; myArr[0] = 707; foreach (int i in myArr) Console.WriteLine(i); int[] abc = new int[1]; abc[0] = 58008; foreach (int f in abc) Console.WriteLine(f); int[] ggvp = new int[1]; ggvp[0] = 100; foreach (int h in ggvp) Console.WriteLine(h); int[] lol = new int[1]; lol[0] = 123; foreach (int k in lol) Console.WriteLine(k); int[] blabla = new int[1]; blabla[0] = 228; foreach (int e in blabla) Console.WriteLine(e); int[] cs = new int[1]; cs[0] = 990; foreach (int n in cs) Console.WriteLine(n); int[] valve = new int[1]; valve[0] = 432; foreach (int s in valve) Console.WriteLine(s); int[] steam = new int[1]; steam[0] = 1337; foreach (int y in steam) Console.WriteLine(y); int[] mat = new int[1]; mat[0] = 400; foreach (int d in mat) Console.WriteLine(d); int[] eloa = new int[1]; eloa[0] = 500; foreach (int j in eloa) Console.WriteLine(j); Console.ReadLine(); } } }
Решение задачи: «Вывод определенного массива на экран»
textual
Листинг программы
foreach (int i in myArr) Console.WriteLine(i);
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д