Module: (Java) Alt programlar: prosedürler ve işlevler - 1


Problem

5/11

İki seçenek

Problem

İki parametre alan bir prosedür yazın – doğal sayı N ve dize S – ve ekrana S dizesini N defa tekrarlayarak yazdırır.

Örnekler
# Girdi Çıktı
1 3
tamam
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!