Module: (Java) Chương trình con: thủ tục và hàm - 1


Problem

5/11

Hai lựa chọn

Problem

Viết thủ tục nhận hai tham số – số tự nhiên N và chuỗi S – và in chuỗi S ra màn hình, lặp lại N lần.

Ví dụ <đầu>
# Đầu vào Đầu ra
1 3
được rồi
okokok
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!