#17200: 錯誤: 找不到或無法載入主要類別 base_java


ml0427 (ml0427)


這到底是甚麼錯誤!?!?

 

就算只有貼 a001. 哈囉的程式碼也是這個問題...

#17214: Re:錯誤: 找不到或無法載入主要類別 base_java


40375028H (謀事在人 程式在我)


這到底是甚麼錯誤!?!?

 

就算只有貼 a001. 哈囉的程式碼也是這個問題...

 

 

你應該是寫 while (scanner.hasNextLine()) 把 Line 刪掉就可以了

#17510: Re:錯誤: 找不到或無法載入主要類別 base_java


willliu1981@gmail.com (Will Liu)


這到底是甚麼錯誤!?!?

 

就算只有貼 a001. 哈囉的程式碼也是這個問題...


在java 裡:

import java.util.Scanner;

 

public class JAVA {

 

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        while (sc.hasNext()) {

            System.out.println("hello, " + sc.next());

 

        }

 

    }

}