Module: 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ố – số tự nhiên N và chuỗi S – và in chuỗi S ra màn hình, lặp lại N lần.

Ví dụ <đầu>
# Đầu vào Đầu ra
1 3
được rồi
okokok
Write the program below
var i, n: integer;
    s: string;

// напишите процедуру ниже    
begin
    readln(n);
    readln(s);
    printLine(n, s);
end. 

     

Program check result

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