黑马程序员技术交流社区
标题:
求解
[打印本页]
作者:
微行者
时间:
2014-7-12 21:50
标题:
求解
输出 n=6 的三角数字阵
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15
16 17 18 19 20 21
作者:
遗失的美好YXJ
时间:
2014-7-12 22:11
class Demo
{
static int num=1;
public static void main(String[] args){
print(6);
}
public static void print(int N){
for (int x=0 ; x<N ; x++ )
{
for (int y=0 ; y<=x ; y++)
{
System.out.print((num++)+"\t");
}
System.out.println();
}
}
}
作者:
微行者
时间:
2014-7-13 22:18
遗失的美好YXJ 发表于 2014-7-12 22:11
class Demo
{
static int num=1;
恩,谢谢啊,太给力了,哈哈,唉,我的基础不牢啊
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2