编写一个Java 程序,形成以下形式的二维数组,并输出。

12910254381124567122316151413221718192021java... 1 2 9 10 25

4 3 8 11 24

5 6 7 12 23

16 15 14 13 22

17 18 19 20 21
java
展开
 我来答
因为复杂
2009-10-22 · TA获得超过369个赞
知道小有建树答主
回答量:562
采纳率:0%
帮助的人:208万
展开全部
import java.util.Random;//导入包
class shuzu
{
public static void main(String[]args)
{
Random r=new Random();//定义Random类的对象
int[][]x=new int[5][5];
for(int i=0;i<5;i++)
{
for(int j=0;j<5;j++)
{
x[i][j]=r.nextInt(100);//随机生成100内的int数据
System.out.print(x[i][j]+" ");
}
System.out.println();

}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2009-10-23
展开全部
public static void main(String[] args) {
int row=5;

int[][] a=new int[row][row];
a[0][0]=1;
int n=2,zero=0,change=1;
int value=2;
for(int i=1;i<row;i++){
for(int j=0;j<(2*n-1);j++){
if(i%2!=0){
if(j<(2*n-2)/2){
a[zero++][change]=value++;
continue;
}
if(j==(2*n-2)/2){
a[j][j]=value++;
}
if(j>(2*n-2)/2){
a[change][--zero]=value++;
}
}else{
if(j<(2*n-2)/2){
a[change][zero++]=value++;
continue;
}
if(j==(2*n-2)/2){
a[j][j]=value++;
}
if(j>(2*n-2)/2){
a[--zero][change]=value++;
}
}
}
n++;
change++;
zero=0;
}
String out="";
for(int i=0;i<row;i++){
for(int j=0;j<row;j++){
out=""+a[i][j];
if(out.length()==1)
out="0"+out;
System.out.print(out+" ");
}
System.out.println();
}
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
guaidian2008
2009-10-23 · TA获得超过740个赞
知道小有建树答主
回答量:1473
采纳率:0%
帮助的人:981万
展开全部
此题目答案
public static void main(String[] args) {
int row=5;

int[][] a=new int[row][row];
a[0][0]=1;
int n=2,zero=0,change=1;
int value=2;
for(int i=1;i<row;i++){
for(int j=0;j<(2*n-1);j++){
if(i%2!=0){
if(j<(2*n-2)/2){
a[zero++][change]=value++;
continue;
}
if(j==(2*n-2)/2){
a[j][j]=value++;
}
if(j>(2*n-2)/2){
a[change][--zero]=value++;
}
}else{
if(j<(2*n-2)/2){
a[change][zero++]=value++;
continue;
}
if(j==(2*n-2)/2){
a[j][j]=value++;
}
if(j>(2*n-2)/2){
a[--zero][change]=value++;
}
}
}
n++;
change++;
zero=0;
}
String out="";
for(int i=0;i<row;i++){
for(int j=0;j<row;j++){
out=""+a[i][j];
if(out.length()==1)
out="0"+out;
System.out.print(out+" ");
}
System.out.println();
}
}

}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式