Module: (C++) 서브루틴: 프로시저 및 함수 - 1


Problem

5/12

두 가지 옵션

Problem

두 개의 매개변수를 사용하는 프로시저를 작성합니다. 자연수 N 및 문자열 SN번 반복하여 문자열 S를 표시합니다.
 

 

<헤드> <몸>
# 입력 출력
1 3
알았어
오콕
Write the program below
#include<iostream>

using namespace std;

// напишите процедуру ниже   
main()
{
	int n;
	string s;
	cin >> n;
	cin >> s;
	printLine(n, s);
}   

     

Program check result

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