Module: 서브루틴: 절차 및 기능 - 1


Problem

5/11

두 가지 옵션

Problem

2 – 자연수 N 및 문자열 SN번 반복하여 S 문자열을 표시합니다.

예.
<몸>
입력 출력
3 오콕
1
using System;   
2
class Program {   
3
    static void printString(int N, string s) {   
4
5
6
7
8
    static void Main() {   
9
        int N = Convert.ToInt32(Console.ReadLine());   
10
        string s = Console.ReadLine();   
11
        printString(N, s);   
12
    }   
13
}   

     

Program check result

To check the solution of the problem, you need to register or log in!