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!