재밌고 어려운 IT를 이해해보자~!

반복문 본문

C#

반복문

언제나즐거운IT 2024. 6. 28. 22:05

While

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int num = 1;

            while (num <= 10)
                Console.WriteLine("num: {0}", num++);
        }
    }
}

 

 do~while(한번은 먼저 실행 후 반복)

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int num = 1;

            do
            {
                Console.WriteLine("num: {0}", num++);
            } while (num <= 10);
        }
    }
}

 

for(참이 될 때까지 반복)

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            for (int num = 1; num <= 10; num++)
                Console.WriteLine("num: {0}", num);
        }
    }
}

 

 foreach(순회하며 차례대로 접근)

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] arr = { 1, 2, 5, 7, 4, 9, 8, 10, 4, 7, 11 };

            foreach (int i in arr)
                Console.WriteLine("i: {0}", i);
        }
    }
}

'C#' 카테고리의 다른 글

메소드  (0) 2024.06.29
무한루프 제어문  (0) 2024.06.29
조건문  (0) 2024.06.28
연산자(Operators)  (0) 2024.06.28
변수, 데이터 형식, 상수  (0) 2024.06.28
Comments