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


Problem

5/12

두 가지 옵션

Problem

두 개의 매개변수를 사용하는 프로시저를 작성합니다. 자연수 N과 문자열 S – 문자열 S를 N번 반복하여 화면에 출력합니다.

<헤드> <일># <몸>
입력 출력
1 3
알았어
오콕
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!