PoeticalJustice

导航

if

 1 // 测试if
 2 public class TestIf {
 3     public static void main(String[]args){
 4         //[0,1)的随机小数
 5         double d =Math.random();
 6         int e= 1+(int)(d*6);
 7         System.out.println("您的点数是:"+e);
 8         
 9         if(e>3){
10             System.out.println("大大大!");
11         }else{
12         System.out.println("小小小");
13         }
14         System.out.println("试玩结束");
15         
16         System.out.println("正式开始,三次机会,GO!");
17         double a =1+6*Math.random();
18         double b =1+6*Math.random();
19         double c =1+6*Math.random();
20         
21         int count = (int)(a+b+c);
22         System.out.println("第一次点数是:"+a+"第二次点数是:"+b+"第三次点数是:"+c+"总点数是:"+count);
23         if(count>15){
24             System.out.println("运气爆发!");
25             
26         }else if(count>=10&&count<=15){
27             System.out.println("还可以,继续加油!");
28         }else{
29             System.out.println("运气不佳!");
30         }
31         System.out.println("欢迎下次再来!");
32         
33     }
34 }

 

posted on 2017-09-28 21:42  PoeticalJustice  阅读(158)  评论(0编辑  收藏  举报