Module: サブルーチン: プロシージャと関数 - 1


Problem

5/11

2 つのオプション

Problem

2 つの – を必要とするプロシージャを記述します。自然数 N と文字列 S –文字列 SN 回繰り返して表示します。

<本体>
入力 出力
3 ココック
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!