我是绝对的新手。字面上刚刚开始编码。我一直在
"illegal start of expression error"
带有println表达式,但对于我的生活,我无法弄清楚原因。这是代码......
public class BlockofStars {
public static final int HEIGHT = 5;
public static final int WIDTH = 5;
public static void main(String[] args) {
for(int i = 1; i <= HEIGHT; i++){
for(int j = 1; j <= WIDTH; j++){
System.out.println(*);
}
}
}
}
答案 0 :(得分:4)
*必须是字符串:
System.out.println("*");