|
<java入门123>第4.10习题中的第2题eclipse报错
是这样的,<java入门123>第4.10习题中的第2题我把光盘中的答案复制到eclipse中都会报错,
答案是这样的:
public class Exercise2 {
public static void main(String[] args) {
for (int i = 1; i < 10; i++) {
for (int j = 1; j < 10; j++) {
System.out.print(i * j + "\t"); }
System.out.println ( );
}
}
}
报错如下:
return type for the method is missing
syntax error on token"2",delete this token ( lication:line 6)
但直接在命令提示符下,不会报错,请高人指点。 |
|