java输出一个三角形二维数组的问题
要求输出123345456756789我写的代码是这样的publicclasstriangle1{publicstaticvoidmain(String[]args){i...
要求输出
1
2 3
3 4 5
4 5 6 7
5 6 7 8 9
我写的代码是这样的
public class triangle1 {
public static void main(String[] args) {
int a[][];
a=new int[5][];
a[0]=new int[1];
a[1]=new int[2];
a[2]=new int[3];
a[3]=new int[4];
a[4]=new int[5];
for (int i=0;i<a.length ;i++)
{
for (int j=0;j<a[i].length;j++)
a[i][b]=i+j+1;
System.out.print(a[i][j]+"\t");
}
System.out.println();
}
}
运行的时候,它总是说j无法解析。。但是我明明已经定义过j了啊,为什么还无法解析呢,请大神赐教,感激不尽!!
1和23之间空出来的一行是不小心打错了
事实上是上下挨着的 展开
1
2 3
3 4 5
4 5 6 7
5 6 7 8 9
我写的代码是这样的
public class triangle1 {
public static void main(String[] args) {
int a[][];
a=new int[5][];
a[0]=new int[1];
a[1]=new int[2];
a[2]=new int[3];
a[3]=new int[4];
a[4]=new int[5];
for (int i=0;i<a.length ;i++)
{
for (int j=0;j<a[i].length;j++)
a[i][b]=i+j+1;
System.out.print(a[i][j]+"\t");
}
System.out.println();
}
}
运行的时候,它总是说j无法解析。。但是我明明已经定义过j了啊,为什么还无法解析呢,请大神赐教,感激不尽!!
1和23之间空出来的一行是不小心打错了
事实上是上下挨着的 展开
1个回答
展开全部
public static void main(String[] args) throws IOException {
int a[][];
a=new int[5][];
a[0]=new int[1];
a[1]=new int[2];
a[2]=new int[3];
a[3]=new int[4];
a[4]=new int[5];
for (int i=0;i<a.length ;i++)
{
for (int j=0;j<a[i].length;j++){
a[i][j]=i+j+1;
System.out.print(a[i][j]+"\t");
}
System.out.println();
}
你太粗心了 第二层for语句没有加{} 再有就是 把b改为 j 试试这个吧 再和你的比对一下
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询