返回列表 發帖

亂數

  1. public class ch19
  2. {
  3.   public static void main (String args[])
  4.   {
  5.       double x;
  6.       x=Math.random();    //產生介於0.00000~0.999999(無窮小數)的隨機亂數
  7.       System.out.print(x);
  8.   }
  9. }
複製代碼

  1. public class ch19  //類別
  2. {
  3.   public static void main (String arg[]) //方法
  4.   {
  5.     double x;
  6.         x=Math.random();
  7.     System.out.praint(x);
  8.   }
  9. }
複製代碼

TOP

返回列表