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


Problem

5/11

两种选择

Problem

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

例子 <头> <日># <正文>
输入 输出
1 3
好的
奥科科克
Write the program below
import java.util.Scanner;
public class Main { 

// напишите процедуру ниже     
public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n;
        String s;
        n = Integer.parseInt(in.nextLine());
        s = in.nextLine();
        printLine(n, s);
     }
} 
  

     

Program check result

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