public class Main {
public static void main(String[] args) {
for(int i = 1; i <= 3; i++) {
for(int j = 1; j <= 3; j++) {
/** from
nowjava.com - 时 代 Java**/
System.out.print(i + "" + j);
// Print a tab, except for the last number in a row
if (j < 3) {
System.out.print("\t");
}
}
// Print a new line, except after the last line
if (i < 3) {
/**代码未完, 请加载全部代码(NowJava.com).**/
本文系作者在时代Java发表,未经许可,不得转载。如有侵权,请联系nowjava@qq.com删除。