Module: (자바) 서브루틴: 프로시저 및 함수 - 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!