public class Demo { public static void main(String[] args) { // 有百分之一的几率能够中奖 for (int i = 0; i < 100; i++) { if (Math.random() > 0.99) { System.out.println("恭喜你中奖了"); } } } }
原文地址:https://www.cnblogs.com/LangKeZ/p/12148625.html
时间: 2024-10-04 23:37:55