導航:首頁 > 編程語言 > java從鍵盤輸入幾個數字

java從鍵盤輸入幾個數字

發布時間:2023-11-08 20:10:45

java語言循環從鍵盤輸入10個整數,計算奇數的和

importjava.util.Scanner;

publicclassTestAdd{

publicstaticvoidmain(String[]args){
Scannerscan=newScanner(System.in);
intsum=0;
for(inti=1;i<=10;i++){
System.out.println("請輸入第"+i+"個整數:");
inttemp=scan.nextInt();
if(temp%2==1){
sum+=temp;
}
}
System.out.println("所有奇數的和為:"+sum);
}
}

② 編寫一個JAVA小程序,從鍵盤輸入3個數,求這三個數的最大值。

可以使用數組,來存儲輸入的3個數字,然後排序,得到最大值

也可以直接一邊輸出一邊判斷,參考代碼如下

importjava.util.Scanner;

publicclassExam{
publicstaticvoidmain(String[]args){
intlen=3;
System.out.println("請輸入"+len+"個數字");
Scannersc=newScanner(System.in);
intmax=sc.nextInt();//假設第一次輸入的數字是最大,存在這里
for(inti=0;i<len-1;i++){
intx=sc.nextInt();
if(x>max){//如果比max還要大.那麼就替換掉max的值
max=x;
}
}
System.out.println("最大的數字是"+max);
}
}

測試

請輸入3個數字
2
1
6
最大的數字是6

③ java從鍵盤輸入N個數,並輸出其最大值和最小值。

importjava.util.Scanner;
publicclassMain
{
publicstaticvoidmain(String[]args){
Scannersc=newScanner(System.in);
System.out.print("數字個數:");
intn=sc.nextInt();
intmin=Integer.MAX_VALUE;
intmax=Integer.MIN_VALUE;
int[]b=newint[n];
for(inti=0;i<n;i++)
{System.out.print("第"+(i+1)+"個數字:");
b[i]=sc.nextInt();
}
for(inti=0;i<n;i++)
{
if(min>b[i]){min=b[i];}
if(max<b[i]){max=b[i];}
}
System.out.println("最小值:"+min+"最大值:"+max);
}
}

運行結果:

數字個數:5

第1個數字:12

第2個數字:23

第3個數字:44

第4個數字:-43

第5個數字:5

最小值:-43 最大值:44

④ 用Java寫一個程序,鍵盤輸入5個整數 並按大小的次序輸出

import java.util.Arrays;
import java.util.Scanner;

public class Test {
public static void main(String[] args) {
Scanner scanner=new Scanner(System.in);
System.out.println("請輸入5個整數:");
int[] number=new int[5];
for(int i=0;i<number.length;i++){
number[i]=scanner.nextInt();
}
Arrays.sort(number);
System.out.println("排序後輸出:");
for (int num:number) {
System.out.print(num+"\t");
}
}
}

控制台:
請輸入5個整數:
43
12
87
11
0
排序後輸出:
0 11 12 43 87

閱讀全文

與java從鍵盤輸入幾個數字相關的資料

熱點內容
會議上文件讀好後要說什麼 瀏覽:783
安裝壓縮文件office 瀏覽:417
2014年網路營銷大事件 瀏覽:186
首頁全屏安裝代碼 瀏覽:39
黨規黨紀指的哪些文件 瀏覽:995
windows編程圖形界面用什麼設置 瀏覽:266
deb文件安裝路徑 瀏覽:540
飛鴿傳送提示文件名太長 瀏覽:486
日服文件名 瀏覽:648
宏程序和編程哪個好學 瀏覽:965
怎麼打開微信中的文件怎麼打開方式打開方式 瀏覽:98
wordpressgbk版本 瀏覽:328
怎麼看網路的帶寬多少兆 瀏覽:930
word文檔粘貼出現文件包 瀏覽:673
u盤文件傳輸 瀏覽:593
飛行棋教程視頻 瀏覽:629
程序員下載網站 瀏覽:303
蘋果5為什麼不顯示4g網路 瀏覽:741
怎麼做好互聯網公司的微信公眾號 瀏覽:135
ipad與iphone取消同步 瀏覽:697

友情鏈接