Module: (C++) Chương trình con: thủ tục và hàm - 1


Problem

5/12

Hai lựa chọn

Problem

Viết thủ tục nhận hai tham số – một số tự nhiên N và một chuỗi S – và hiển thị chuỗi S bằng cách lặp lại chuỗi N lần.
 

 

Ví dụ
<đầu>
# Đầu vào Đầu ra
1 3
được rồi
okokok
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!