0
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ループで;
をスキップする方法について"トークンの構文エラー"( "、"このトークンの後に期待される ")?
for (; column<=jMax; column++){
それは部分的に働いていた。私が見えるようにする必要がありこれは:1 2 3 4 5 ... so o nがそれだけで行をスキップ – moe
ああ、nvm私は "ln"、感謝を削除! – moe