728x90
SMALL

// 標準入力とル

using System;

public class Program{

    public static void Main(){

        var data = "";

        data = Console.ReadLine();

        Console.WriteLine("hello " + data );

        data = Console.ReadLine();

        Console.WriteLine("hello " + data );

    }

}

// 이렇게 입려하면 입력 창에서 첫 줄에 입력한 데이터가 첫 번째 hello에만 더해진다.

// 입력창에 hi라고 첫째 줄에만 입력하면 hello hi 나오고 다음 줄에 hello가 출력된다.

// 입력창에 hi 엔터치고 hi 입력하면 hello hi가 첫째 줄 둘째 줄에 나온다.

 

// 標準入力とル

using System;

public class Program{

    public static void Main(){

    var data = "";

        var count =0;

        count= int.Parse(Console.ReadLine()); // 첫 번째 줄에 입력한 숫자가 count로 출력된다.

       Console.WriteLine("" + count);

   

        for(var i=0;i<count;i++)

        {

            data = Console.ReadLine();

            Console.WriteLine("hello" + data);

// 0부터 count전까지 두 번째 줄부터 count-1줄까지 있는 데이터를 한 줄씩 출력함. 

 }

    }

}

// 입력할 때 처음에 입력하는 것이 count(숫자)

// 그 다음에 입력하는 것은 그 count에 해당하는 숫자

 

// 標準入力とル

using System;

public class Program{

    public static void Main(){

     var count =0;

     count = int.Parse(Console.ReadLine());

     for(var i=0; i<count;i++)

     {

         Console.WriteLine("スライムがあらわれた");

        

     }

}

}

// 슬라임이 나타났다는 것을 count번 만큼 출력한다.

728x90

설정

트랙백

댓글