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 展开
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 展开
展开全部
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();
}
}
}
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();
}
}
}
展开全部
很有意思的题目。作答如下,总体思路是二维数组。
//行参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();
}
}
//行参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();
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询