***Hello World!***

Console(콘솔)/실습 2019. 9. 25. 16:08

Hello World!를 10번 출력

 

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

 

namespace 입출력과_사칙연산

{

    class Program

    {

        static void Main(string[] args)

        {

         for(int i = 1; i<11; i++)

            {

                Console.WriteLine("Hello World!");

            }

        }

    }

}

 

'Console(콘솔) > 실습' 카테고리의 다른 글

switch  (0) 2019.09.26
switch문, if-else문 사용  (0) 2019.09.26
시험 등급  (0) 2019.09.25
*** 상품목록2 ***  (0) 2019.09.23
*** 상품목록 ***  (0) 2019.09.23
: