Module: サブルーチン: プロシージャと関数 - 1


Problem

9/11

別の意味での三角形

Problem

 n 文字 ' で直角三角形を出力する手順を書きますその側面;m'.


 

<本体>

 

入力 出力
3  分
 mm
うーん
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!