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


Problem

4/11

Rectangle: viết thủ tục

Problem

Viết một thủ tục cần một – số tự nhiên N, – và hiển thị hình chữ nhật có chiều dài N  và chiều cao 3 ký tự (sử dụng ký tự tiếng Anh 'o' làm ký tự).

Ví dụ.

 
Thông tin đầu vào Dấu ấn
7 ooooooo
oooooo

ooooooo
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!