導航:首頁 > 編程語言 > 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從鍵盤輸入幾個數字相關的資料

熱點內容
計算機網路章節練習 瀏覽:999
單片機的外部中斷程序 瀏覽:48
表格批量更名找不到指定文件 瀏覽:869
js的elseif 瀏覽:584
3dmaxvray視頻教程 瀏覽:905
imgtool工具中文版 瀏覽:539
java幫助文件在哪裡 瀏覽:965
win10切換輸入語言 瀏覽:696
haier電視網路用不了怎麼辦 瀏覽:361
蘋果6手機id怎麼更改 瀏覽:179
米家掃地機器人下載什麼app 瀏覽:82
如何在編程貓代碼島20種樹 瀏覽:915
手機基礎信息存儲在哪個文件 瀏覽:726
如何查找手機備份文件 瀏覽:792
內存清理工具formac 瀏覽:323
iphone過濾騷擾電話 瀏覽:981
wap網路如何使用微信 瀏覽:699
手機迅雷應用盒子在哪個文件夾 瀏覽:351
windows8網路連接 瀏覽:442
怎麼快速增加qq群人數 瀏覽:919

友情鏈接