1
212
32123
4321234
543212345
65432123456
7654321234567
876543212345678
98765432123456789
上面是要打印的结果,本人写的一段小代码,大大神们有没有更简单的代码呢,拿出来交流一下吧
本人代码如下- public static void method()
- {
- for(int i=1;i<10;i++)
- {
- for(int j=1;j<10-i;j++)//找到每行的第一个输入的位置
- System.out.print(" ");
- for(int j=i;j>0;j--)//按从大到小输入每行的左半边
- System.out.print(j);
- for(int j=2;j<=i;j++)//按从小到大输入每行的右半边
- System.out.print(j);
- System.out.println();//每行输入完成后换行
- }
- }
复制代码 大家有没有更简便的代码?
|
|