//반복문
int i = 0;
while(i < 10)
{
++i;
Console.WriteLine("While : {0}", i);
}
i = 0;
do
{
++i;
Console.WriteLine("Do While : {0}", i);
} while (i < 10);
int[] test = new int [10];
for (int j = 0; j < test.Length; ++j)
{
test[j] = j;
Console.WriteLine("For : {0}", j);
}
//foreach(int nn in test) //test에 들어있는 것은 nn 변수로 받겠다
//{
// Console.WriteLine("Foreach : {0}", nn);
//}
foreach (var nn in test) //c++ 에서 auto 가 C# 에서 var로 되었다
{
Console.WriteLine("Foreach : {0}", nn);
}
'공부 > C#' 카테고리의 다른 글
Console Color (0) | 2016.05.04 |
---|---|
시간 측정 Stopwatch (0) | 2016.05.04 |
비트 연산 (0) | 2016.05.04 |
switch (0) | 2016.05.04 |
사칙연산 (0) | 2016.05.04 |