0
這裏是我的代碼:我試圖找到最小數量,但我一直在最大限度地幫他一些幫助嗎?
import java.util.Scanner;
import java.util.Arrays;
import java.text.*;
public class p171ex6a{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
int numk;
numk = scan.nextInt();
double num;
double [] max = new double[numk];
for (int in=0;in<numk;in++) {
num = scan.nextDouble();
max [in]= num;
}
DecimalFormat df = new DecimalFormat("0.0000");
Arrays.sort(max);
System.out.println(df.format(max[max.length-1]));
}
}
Stack Overflow上的數字爲1的用戶剛剛回答了您的問題!很酷,呃? :) – Almo 2012-01-16 22:13:04