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


Problem

5/11

Hai lựa chọn

Problem

Viết một thủ tục mất hai – một số tự nhiên N và một chuỗi S – và hiển thị chuỗi S bằng cách lặp lại chuỗi N lần.

Ví dụ.
Đầu vào Đầu ra
3 okokok
1
using System;   
2
class Program {   
3
    static void printString(int N, string s) {   
4
5
6
7
8
    static void Main() {   
9
        int N = Convert.ToInt32(Console.ReadLine());   
10
        string s = Console.ReadLine();   
11
        printString(N, s);   
12
    }   
13
}   

     

Program check result

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