java 数字金字塔 谢谢,在线等

怎么用java里的nestedforloop方法写出如下的数字金字塔:11211242112484211248168421124816321684211248163264... 怎么用java里的nested for loop方法写出如下的数字金字塔:
1
1 2 1
1 2 4 2 1
1 2 4 8 4 2 1
1 2 4 8 16 8 4 2 1
1 2 4 8 16 32 16 8 4 2 1
1 2 4 8 16 32 64 32 16 8 4 2 1
1 2 4 8 16 32 64 128 64 32 16 8 4 2 1
展开
 我来答
百度网友70ae8e86ac
2008-04-09 · TA获得超过1304个赞
知道小有建树答主
回答量:815
采纳率:0%
帮助的人:1096万
展开全部
package com.color.program;

public class Pyramid {

public static void main(String[] args){

for(int i=0;i<10;i++){
for(int j=0;j<2*i+1;j++){
if(j<=i){
System.out.print(" "+(int)Math.pow(2, j));
}else{
System.out.print(" "+(int)Math.pow(2, 2*i-j));
}
}
System.out.println();
}
}

}
补丁屋
2008-04-14 · TA获得超过1103个赞
知道答主
回答量:54
采纳率:0%
帮助的人:0
展开全部
a
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
miniapp1ojp4uuof5gbq
2008-04-09 · TA获得超过347个赞
知道小有建树答主
回答量:155
采纳率:0%
帮助的人:146万
展开全部
很有意思的题目。作答如下,总体思路是二维数组。
//行参n是你要输出的行数。当n=8时,和你的“金字塔”一致。
public void print(int n){

int[][] temp = new int[n][];
for(int i=0;i<temp.length;i++){
temp[i] = new int[2*i+1];
}
temp[0][0]=1;
for(int i=1;i<temp.length;i++){
int maxIndex = temp[i].length-1;
temp[i][0]=temp[i][maxIndex]=1;
for(int j=1;j<(temp[i].length-1)/2+1;j++){
temp[i][j]=temp[i][j-1]+temp[i][maxIndex-j+1];
temp[i][maxIndex-j]=temp[i][j];
}
}
for(int i=0;i<temp.length;i++){
for(int j=0;j<temp[i].length;j++){
System.out.print(temp[i][j]+" ");
}
System.out.println();
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式