我的任務是使用循環打印0到1之間的1,000,000個隨機數。從MathRandom生成的數字打印最大數
我選擇使用函數Math.random來做到這一點,併爲for循環創建1,000,000。
現在我需要打印數字的最大值...但是如何?是否可以在將它們放入數組中進行操作?
這裏是我到目前爲止的代碼:
public class GenerateRandomNumbers
{
public static void main(String[]args)
{
for(int i=0; i < 1000000; i++){
System.out.println(Math.random());
}
}
}
只要保持當前最大和改變它,只要你生成一個比較大的數字(存儲隨機值的變量,如果需要更新最大,並打印出來)。 – Cinnam