返回列表 發帖

[作業] 亂數 (四)

本帖最後由 tonyh 於 2014-6-21 14:15 編輯

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

  1. import java.lang.Math;
  2. public class ch32
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          for(int i=1; i<=15; i++)
  7.               System.out.println((int)(Math.random()*6+123));
  8.     }
  9. }
複製代碼

TOP

  1. import java.lang.Math;
  2. public class ch32
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          for(int i=1; i<=15; i++)
  7.               System.out.println((int)(Math.random()*6+123));
  8.     }
  9. }
複製代碼

TOP

本帖最後由 張瀚仁 於 2014-6-21 14:14 編輯
  1. public class ch32
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1;i<=15;i++)
  6.             System.out.println((int)(Math.random()*6+123))
  7.     }

  8. }
複製代碼

TOP

  1. public class ch32
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=15; i++)
  6.             System.out.println((int)(Math.random()*6+123));
  7.     }
  8. }
複製代碼

TOP

  1. public class ch31
  2. {
  3.        public static void main(String args[])
  4.        {
  5.               for(int i=1; i<=15; i++)
  6.               System.out.println((int)(Math.random()*6+123());
  7.        }
  8. }
複製代碼

TOP

  1. public class ch31
  2. {
  3. public static void main(String[] args)
  4. {
  5.   for(int i=0;i<=15;i++)
  6.    System.out.println((int)(Math.random()*6+123));




  7. }

  8. }
複製代碼

TOP

返回列表