在Java中,可以使用隨機數來產生一定數量的數字,并將它們加總起來。下面是一段使用Java語言計算隨機數量和的代碼:
import java.util.Random; public class RandomSum { public static void main(String[] args) { // 生成隨機數量的數字 Random rand = new Random(); int n = rand.nextInt(10) + 1; // 生成1到10之間的隨機數 int[] arr = new int[n]; for (int i = 0; i< n; i++) { arr[i] = rand.nextInt(100); // 生成0到99之間的隨機數 } // 計算總和 int sum = 0; for (int i : arr) { sum += i; } // 輸出結果 System.out.println("隨機生成的數字有" + n + "個,分別為:"); for (int i : arr) { System.out.print(i + " "); } System.out.println("\n它們的總和為:" + sum); } }
上述代碼中,首先利用Random類生成了一個1到10之間的隨機整數n,然后利用for循環生成了n個0到99之間的隨機整數。隨后再次利用for循環將這些數字加總起來,并輸出結果。
需要注意的是,由于隨機數是隨機生成的,因此每次運行程序得到的結果可能都不同。