返回列表 發帖

[隨堂測驗] 亂數 (四)

本帖最後由 tonyh 於 2014-11-22 17:20 編輯

產生15組範圍介於112~118之隨機亂數.
  1. public class ch33
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          for(int i=1; i<=15; i++)
  6.              System.out.println((int)(Math.random()*7+112));
  7.     }
  8. }

  9. /*
  10.     Math.random();              0.00000 ~ 0.99999
  11.     Math.random()*7;            0.00000 ~ 6.99999
  12.     Math.random()*7+112;        112.00000 ~ 118.99999
  13.     (int)(Math.random()*7+112)  112 ~ 118
  14. */
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表