返回列表 發帖

[隨堂測驗] 亂數 (四)

本帖最後由 李泳霖 於 2022-1-27 11:01 編輯

產生15組範圍介於112~118之隨機亂數.
  1. import java.util.Scanner;

  2. public class Ch01 {

  3.         public static void main(String[] args) {
  4.                 for(int i=1; i<=15; i++)
  5.                         System.out.println((int)(Math.random()*7+112));

  6.         }

  7. }
  8. /*
  9. * 112~118
  10. Math.random():
  11. 0.00000000000000000000~0.99999999999999999999
  12. Math.random()*7:
  13. 0.000000000000000000000~6.99999999999999999999
  14. Math.random()*7+112:
  15. 112.00000000000000000000000~118.9999999999999999999

  16. 無條件捨去
  17. (int)(Math.random()*7+112):
  18.   

  19. *
  20. *
  21. */
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表