#15111: 請問錯在哪?


lingming88 (unknown)

學校 : 道明
編號 : 83315
來源 : [125.229.60.74]
最後登入時間 :
2022-07-14 20:58:47
a001. 哈囉 -- Brian Kernighan | From: [120.125.88.181] | 發表日期 : 2018-09-14 15:21

import java.util.Scanner;
public class p0914 {

public static void main(String[] args) {
    Scanner s=new Scanner(System.in);
    String a=s.nextLine();
    System.out.println("hollo, "+a);

  }

}

 
#15121: Re:請問錯在哪?


anandrewboy70900 (ShowTsai)

學校 : 國立中央大學
編號 : 27736
來源 : [203.204.218.144]
最後登入時間 :
2024-10-11 16:21:37
a001. 哈囉 -- Brian Kernighan | From: [140.115.221.24] | 發表日期 : 2018-09-14 23:06

 

1.請重複輸入

2."hello", 不是 "hollo"




 
#15145: Re:請問錯在哪?


lingming88 (unknown)

學校 : 道明
編號 : 83315
來源 : [125.229.60.74]
最後登入時間 :
2022-07-14 20:58:47
a001. 哈囉 -- Brian Kernighan | From: [49.216.143.111] | 發表日期 : 2018-09-16 08:12

 

1.請重複輸入

2."hello", 不是 "hollo"



import java.util.Scanner;

public class Text1 {

public static void main(String[] args) {

    Scanner s=new Scanner(System.in);

    for(int n=0; ;n++){

    String a=s.nextLine();

    System.out.println("hello, "+a);

    if(n==10){break;}

  } 

 

 }

 

}

請問一下我可以重複了

但是測試系統說找不到結束點是怎麼一回事?

當我輸入10for迴圈會停止

後面再輸入時不會跑出hello ,




 
#15162: Re:請問錯在哪?


anandrewboy70900 (ShowTsai)

學校 : 國立中央大學
編號 : 27736
來源 : [203.204.218.144]
最後登入時間 :
2024-10-11 16:21:37
a001. 哈囉 -- Brian Kernighan | From: [140.115.221.24] | 發表日期 : 2018-09-16 19:04

 

1.請重複輸入

2."hello", 不是 "hollo"



import java.util.Scanner;

public class Text1 {

public static void main(String[] args) {

    Scanner s=new Scanner(System.in);

    for(int n=0; ;n++){

    String a=s.nextLine();

    System.out.println("hello, "+a);

    if(n==10){break;}

  } 

 

 }

 

}

請問一下我可以重複了

但是測試系統說找不到結束點是怎麼一回事?

當我輸入10for迴圈會停止

後面再輸入時不會跑出hello ,


請去搜尋 hasNextLine 的用法




 
ZeroJudge Forum