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


Problem

9/11

다른 방식으로 삼각형

Problem

 n 문자 '가 있는 직각 삼각형을 인쇄하는 절차를 작성하십시오. 옆면 ;m'.

예.

 

<몸>

 

입력 출력
3   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!