您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關java實現從鍵盤獲取數據的方法,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
import java.util.Scanner;// 導包, 找到Scanner的位置 public class TestScore{ public static void main(String [] args){ //Scanner ,描掃儀 //【1】創建Scanner對象, System.in標準的輸入設備,鍵盤 Scanner input=new Scanner(System.in); //input是描掃儀的名稱,自己起,變量的命名規則 //【2】給用戶友好提示 System.out標準的輸出設備,顯示器 System.out.print("請輸入java課程的分數:"); //聲明變量并賦值 int javaScore= input.nextInt(); //從鍵盤錄入一個整數賦值給int類型的變量 javaScore System.out.print("請輸入sql課程的分數:"); int sqlScore=input.nextInt(); System.out.print("請輸入stb課程的分數:"); int stbScore=input.nextInt(); int diffen; //聲明變量,用于存儲分數差 double avg;// 聲明變量,用于存儲平均分 //給分數差及平均分賦值 diffen=javaScore-sqlScore; //賦值是從右到左 avg=(javaScore+sqlScore+stbScore)/3; //avg=(javaScore+sqlScore+stbScore)/3.0; System.out.println("-------------------------------"); System.out.println("java\tsql\tstb"); System.out.println(javaScore+"\t"+sqlScore+"\t"+stbScore); System.out.println("-------------------------------"); System.out.println("java與sql的差是:"+diffen); System.out.println("三門課程的平均分為:"+avg); } }
import java.util.Scanner; public class HelloWorld{ public static void main(String [] args ){ Scanner input=new Scanner(System.in); System.out.print("請輸入java的成績"); int javaScore=input.nextInt(); System.out.print("請輸入python成績"); int pythonScore=input.nextInt(); System.out.println("請輸入C語言的成績"); int cScore=input.nextInt(); int avg=(javaScore+pythonScore+cScore)/3; int diffen; diffen=javaScore-pythonScore; System.out.println("各門功課的成績為:\t"+"javaScore \t"+"pythonScore\t"+"cScore"); System.out.println("各門功課的成績為:\t"+javaScore+"\t"+pythonScore+"\t"+cScore); System.out.println("java和python的成績差為:"+diffen); } }
SQL語句:Structured Query Language
標準的輸入設備:鍵盤,System.in
標準的輸出設備:電腦屏幕,System.out
創建Scanner對象:Scanner input=new Scanner(System.in);
上述就是小編為大家分享的java實現從鍵盤獲取數據的方法了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。