Module: (Python) 子例程:过程和函数 - 1


Problem

5/11

两种选择

Problem

编写一个带有两个参数的过程 –自然数 N 和字符串 S –并将字符串 S 打印到屏幕上,重复 N 次。

例子 <头> <日># <正文>
输入 输出
1 3
好的
奥科科克
Write the program below
# процедура  
# основная программа
n = int(input())
s = input()
printLine(n, s)  

     

Program check result

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