Java if单选择结构---掷色子游戏
package cn.geekeryi;
public class IfTest01 {
public static void main(String[] args){
// double d = Math.random(); //Math.random()生成一个[0,1)之间的随机数
int a = 1+(int)(Math.random()*6); //生成了[1,6]之间的随机整数
int b = 1+(int)(Math.random()*6);
int c = 1+(int)(Math.random()*6);
int count = a + b + c;
if (count>15){
System.out.println("手气真棒,今天踩屎了吧!");
}
if (10<=count&&count<=15){ //不能写成10<=count<=15,在Java里面不能这么写,在Python语言里面可以这么写
System.out.println("手气一般,赶紧去踩屎提高一下运气!");
}
if (count<10){
System.out.println("你的手气太烂了,去吃一下老八的秘制小汉堡!");
}
System.out.println("第一个色子:"+a+"
第二个色子:"+b+"
第三个色子:"+c+"
总分:"+count);
}
}