Board logo

標題: 抽籤程式 [打印本頁]

作者: 葉桔良    時間: 2022-2-12 14:46     標題: 抽籤程式

本帖最後由 葉桔良 於 2022-7-9 14:59 編輯
  1. import java.util.*;
  2. public class JPD02 {
  3.     public static void main(String[] args) {
  4.         test();
  5.         test();
  6.         test();
  7.         test();
  8.         test();
  9.     }
  10.    
  11.     static void test() {
  12.         double rand=0;
  13.         rand = Math.random()*10+1;
  14.         System.out.println((int)(rand));
  15.     }
  16. }
複製代碼
  1. package test;

  2. public class YAYA {
  3.     public static void main(String[] args) {
  4.         test2();
  5.         
  6.         test();
  7.     }
  8.    
  9.     static void test() {
  10.         double rand=0;
  11.         rand = Math.random()*10+1;
  12.         if((int)(rand)==10)
  13.                 System.out.print((int)(rand));
  14.         else{
  15.                 System.out.print("0");
  16.                 System.out.print((int)(rand));
  17.         }
  18.     }
  19.     static void test2() {
  20.         double rand=0;
  21.         rand = Math.random()*3+1;
  22.         System.out.print((int)(rand));
  23.     }
  24. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2