2个回答
展开全部
public class y {
public static void main(String args[]) {
int[][] h = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } };
for (int i = 0; i < h.length; i++) {
for (int j = 0; j <= h[1].length - 1; j++) {
System.out.print(h[i][j]);
}
System.out.println("");
}
}
}
public static void main(String args[]) {
int[][] h = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } };
for (int i = 0; i < h.length; i++) {
for (int j = 0; j <= h[1].length - 1; j++) {
System.out.print(h[i][j]);
}
System.out.println("");
}
}
}
更多追问追答
追问
那如果把数字改成字符串呢
追答
一样的,你把里面的1,2,3这些换成“1”,“2”,“3”,这样就是字符串了,当然你也可以换成其他的,这个关键是一个循环输出,没多少难度的
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询