這哪里錯了 一直不能輸出題目
public class HelloWorld{
? ? public static void main(String[] args) {
? ? ? ? ? ?String myLove="我愛慕課網";
? ? ? ? ? ?String myURL="www.xianlaiwan.cn";
? ? ? ? ? ?System.out.println("myLove");
? ? ? ? ? ?System.out.println("myURL");
? }
}
2022-03-25
原來是addEventListener拼錯了測試成功,恭喜...
2018-09-16
在System.out.println();的輸出語句中不用在括號里加引號
2018-09-04
public class HelloWorld{
? ? public static void main(String[] args) {
? ? ? ? ? ?String myLove="我愛慕課網";
? ? ? ? ? ?String myURL="www.xianlaiwan.cn";
? ? ? ? ? ?System.out.println(myLove);
? ? ? ? ? ?System.out.println(myURL);
? }
}
2018-08-28
用eclipse跑了一下沒問題,如果是timeout多提交幾次就好了