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


Problem

9/11

tam giác theo một cách khác

Problem

Viết quy trình in một tam giác vuông có ký tự  n ' trên các cạnh của nó ;m'.

Ví dụ.

 

 

Đầu vào Đầu ra
3   tôi
 ừm
ưm
1
using System;   
2
class Program {   
3
    static void printTriangle(int n) {   
4
5
6
7
8
9
10
11
12
13
14
15
16
    }   
17
    static void Main() {   
18
        int n = Convert.ToInt32(Console.ReadLine());   
19
        printTriangle(n);   
20
    }   
21
}   
22


                                                   

     

Program check result

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