【发布时间】:2017-09-22 23:30:54
【问题描述】:
package mathtable;
public class tablefmath {
public static void main(String[] args) {
// TODO Auto-generated method stub
final int jMax = 10;
final int iMax = 15;
int column=1, row=1;
System.out.println(" " + " | ");
for (column<=jMax; column++) {
System.out.println(column + "\t");
}
}
}
这是我的代码。我想完成一个乘法表。我知道怎么做,但我的 for 循环有语法错误?
【问题讨论】: