Module: 서브루틴: 절차 및 기능 - 1


Problem

4/11

사각형: 프로시저 작성

Problem

단일 – 자연수 N, – 길이가 N 이고 높이가 3글자(영문자 'o'를 문자로 사용)의 사각형을 표시합니다.

예.
<몸>
 
입력 출판물
7 우우우우우
우우우우우

우우우우
1
using System;   
2
class Program {   
3
    static void printRectangle(int N) {   
4
5
6
7
8
9
10
11
12
    }   
13
    static void Main() {   
14
        int N = Convert.ToInt32(Console.ReadLine());   
15
        printRectangle(N);   
16
    }   
17
}   

     

Program check result

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