<foreach in, for, while>
C#/수업내용 2019. 3. 27. 14:101 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study_04 { class ConsoleApp { public ConsoleApp() { Console.WriteLine("Hello World!"); //실습 시작 string[] arrNames = { "홍길동", "임꺽정", "홍상직" }; foreach (string name in arrNames) { Console.WriteLine("{0}", name); } Console.WriteLine(); for (int i = 0; i < arrNames.Length; i++)//위의 foreach와 같은 기능 { Console.WriteLine("{0}", arrNames[i]); } Console.WriteLine(); int j = 0; while (true) { Console.WriteLine("{0}", arrNames[j]); j++; if(j>=arrNames.Length) { break; } } Console.WriteLine(); } } } | cs |
ps.홍상직은 홍길동의 아버지이다.
'C# > 수업내용' 카테고리의 다른 글
<인벤토리>Array형으로 롤백 (0) | 2019.04.01 |
---|---|
<인벤토리>List<T> 제네릭형 (0) | 2019.04.01 |
이따가 분류 (0) | 2019.03.29 |
1차원 배열 (0) | 2019.03.28 |
methods (0) | 2019.03.22 |