我的朋友试图教我 Java,作为他的挑战之一,他希望我在 10 x 10 网格中创建一个从 1,1 到 10,10 的有序对网格。它应该看起来像这样:
1,1 1,2 1,3 1,4 1,5 1,6 1,7 1,8 1,9 1,10
2,1 2,2 2,3 2,4 2,5 2,6 2,7 2,8 2,9 2,10
...
10,1 10,2 10,3 10,4 10,5 10,6 10,7 10,8 10,9 10,10
但我似乎只能以以下格式打印出有序对:
1,1
1,2
1,3
1,4
...
10,10
我该如何解决这个问题?
到目前为止,我的代码是:
public class project{
public static void main(String []args){
for (int x=1;x<=10; x=x+1)
{
for (int y=1;y<=10;y=y+1)
{
System.out.println(x + "," + y);
}
System.out.println("\n");
}
}
}