第五章練習題2
//鍵盤輸入隨機數字的幾組數字,輸出幾組資料中最大的數和最小的數
public static void four() {
int max = 0;int min = 0;
int num = 0;
Scanner input = new Scanner(System.in);
System.out.println("請輸入一個數值:");
num=min=max=input.nextInt();
do {
if (num > max) {
max = num;
} else if (num < min) {
min = num;
}
System.out.println("請輸入一個數值:");
//Scanner input = new Scanner(System.in);
num = input.nextInt();
} while (num != 0);
System.out.println("最大值是:" + max + "最小值是:" + min);
}
}
相關文章
- 第五章練習題
- 第五章練習題3
- 第五章練習題5
- 14.第五章模態命題練習題
- 程式練習題(2)
- 第七章練習題2
- 新手練習:Python練習題目Python
- 習題練習題-第二題
- NFS練習題NFS
- SQL練習題SQL
- mysql練習題MySql
- TypeScript 練習題TypeScript
- 練習題-9
- shell練習題
- Python 練習題Python
- 團隊練習2
- Keras 練習2 - CNNKerasCNN
- leetcode陣列練習題2:283. 移動零LeetCode陣列
- 【show me the code】Python練習題&語法筆記 2Python筆記
- linux練習題(二)Linux
- python練習題解析Python
- swoole 的練習 demo(2)
- 【CSS練習】IT修真院–練習2-開發工具CSS
- 軟體工程練習題軟體工程
- Python函式練習題Python函式
- python相關練習題Python
- mysql函式練習題MySql函式
- 3 月水題練習
- JAVA 基礎練習題Java
- java String類練習題Java
- Java Web概述-練習題JavaWeb
- Python基礎練習題Python
- 五、python的練習題Python
- mysql面試練習題MySql面試
- java異常練習題Java
- linux基礎練習題Linux
- 《明解C語言》練習題4-2的實現C語言
- 資料庫大型應用——筆記2 50道mysql練習題資料庫筆記MySql