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


Problem

7/11

tam giác vuông

Problem

Viết quy trình vẽ một tam giác vuông có các cạnh là n ký tự 'm'.

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

     

Program check result

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