我似乎無法理解下面的代碼是什麼問題。你能解釋一下要做出什麼改變嗎?錯誤說以下內容:Java代碼錯誤:類,接口或枚舉的預期?
public class Main{
public static void main(String[] args) {
int num = 13 * 7 * 23;
int a = 1;
while (a <= num/2) {
if (num%a == 0) {
System.out.print(a + " ");
}
}
System.out.println(" ");
我用你發佈的代碼得到的錯誤是「在解析時到達文件末尾」。縮進你的代碼,不正確的結構會突然出現。 –
使用像eclipse這樣的真正的IDE。 – HopefullyHelpful