2. for, foreach, while
C#/수업내용 2019. 3. 27. 14:191 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 | using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace study0327 { class App { public App() { int i = 0; string[] arrNames = { "홍길동", "임꺽정", "홍상직" }; for (i = 0; i<arrNames.Length; i++) { Console.Write(" {0}", arrNames[i]); } i = 0; while(i<arrNames.Length) { Console.Write(" {0}", arrNames[i]); i++; } foreach(string arr in arrNames) { Console.Write(" {0}", arr); } Console.ReadKey(); } } } | cs |
foreach를 이용하여 배열의 원소들을 차례로 출력하는 예시를 작성해보았다.
for와 while도 같은 역할을 하게끔 작성했다.
결과 값은 : " 홍길동 임꺽정 홍상직 홍길동 임꺽정 홍상직 홍길동 임꺽정 홍상직"이다.
'C# > 수업내용' 카테고리의 다른 글
제너릭 클래스, 상속을 이용하여 Inventory 만들기 (0) | 2019.04.01 |
---|---|
List를 이용하여 Inventory 만들기 (0) | 2019.04.01 |
Array를 이용하여 Inventory 만들기 (0) | 2019.04.01 |
공부할것 (0) | 2019.03.29 |
1. Method (0) | 2019.03.24 |