fork download
  1. import java.util.Random;
  2.  
  3. public class Main {
  4.  
  5. static Random Rand = new Random();
  6.  
  7. public static void main(String[] args) {
  8. System.out.println(Omikuji());
  9. }
  10.  
  11. public static String Omikuji() {
  12. String[] a1sOmi = { "凶", "小吉", "中吉", "大吉" };
  13. return a1sOmi[Rand.nextInt(4)]; //0~3
  14. }
  15. }
  16.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty