解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class Main
{
public static void main(String[]ages)
{
Scanner sc=new Scanner(System.in);
int a=sc.nextInt();
int z=0;
for(int i=1;i<=a;i++)
{
for(int x=i;x<=a;x++)
{
if(x==i){
z=i-1;
z=(z*(z+1))/2+1;
}
else
z=z+x;
System.out.print(z+" ");
}
System.out.println();
}
}
}
0.0分
0 人评分
C语言训练-排序问题<1> (C语言代码)浏览:636 |
WU-蓝桥杯算法提高VIP-Quadratic Equation (C++代码)浏览:1808 |
C语言考试练习题_一元二次方程 (C语言代码)浏览:606 |
C语言训练-亲密数 (C语言代码)浏览:697 |
图形输出 (C语言代码)浏览:1422 |
printf基础练习2 (C语言代码)浏览:547 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:331 |
陈教主的三角形 (C语言代码)浏览:1197 |
C二级辅导-等差数列 (C语言代码)浏览:891 |
敲七 (C++代码)浏览:1119 |