zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    shell 默认变量
    diff 实现
    AWK变量
    docker-bridge network
    docker--linux network namespace
    docker-container 操作
    docker--shell和Exec格式
    docker--build自己的image
    docker--container
    docker--删除container和image
  • 原文地址:https://www.cnblogs.com/PoeticalJustice/p/7608756.html
Copyright © 2011-2022 走看看