- /**
- 需求: 输出 n=6 的三角数字阵
- 1
- 2 3
- 4 5 6
- 7 8 9 10
- 11 12 13 14 15
- 16 17 18 19 20 21
- */
- import java.util.Scanner;
- class PringNumber {
- public static void main(String[] args) {
- //创建录入对象
- Scanner sc = new Scanner(System.in);
- System.out.print("请输入三角形的高度: ");
- //定义一个变量用于接收三角形的高度
- int hight = sc.nextInt();
- int count = 1;
- for(int x=1; x<=hight; ++x) {
- for(int y=1; y<=x; ++y) {
- System.out.print(count+"\t");
- count++;
- }
- System.out.println();
- }
-
- }
- }
复制代码
|