1. 程式人生 > 其它 >根據時間進行條件篩選查詢問題記錄

根據時間進行條件篩選查詢問題記錄

import java.util.Scanner;    //工具包中的scanner

 new Scanner(System.in);   //建立一個掃描物件,接受鍵盤資料

System.out.println("使用next方式接受")

if(scanner.hasNext()){                                       //判斷使用者有沒有輸入字串通過 hasNext()   OR  hasNextLine()                             判斷可有可無

 scanner.next();          scanner.nextLine();                     //等待使用者輸入                next()不能得到帶有空格的字串

System.out.println("輸出的內容為:"+str)

}

scanner.close();           //凡是屬於IO流的類如果不關閉會一直佔用資源,用完要記得關掉              IO流:輸入輸出

題目:輸入多個數字,求總和與平均數,每輸入一個數字用回車確認,通過輸入非數字來結束輸入並輸出結果

package test;
import java.util.Scanner;            // 匯入掃描器
public class demo01 {
public static void main(String[] args){
Scanner buding= new Scanner (System.in);    //buding 是自己命名的。


double sum=0;
int m = 0;
while(buding.hasNextDouble()){
double x = buding.nextDouble();
m=m+1;
sum=sum+x;

}

}
}