if单选控制结构

时间:2022-11-26 20:00:25
package myproject;
/*
* if单选控制结构
*/

public class TestIf {
public static void main(String[] args){
check(99);
eat(200.5);
touzi();
}
public static void check(int a){
boolean flag = a>90;
//如果flag的值为true则执行if语句的代码块;如果flag的值为false则跳出if语句。
if(flag){
System.out.println("带你去北京");
}
System.out.println("带你去上海");
}
public static void eat(double b){
boolean flag = b>200;
if(flag){
System.out.println("带你去吃海鲜");
}else{
System.out.println("带你去吃面条");
}
}
public static void touzi(){
int a = (int)(6*Math.random()+1);
int b = (int)(6*Math.random()+1);
int c = (int)(6*Math.random()+1);
int total = a+b+c;
if(total>=15){
System.out.println("今天手气不错");
}
if(total<15 && total>=10){
System.out.println("今天手气一般");
}
if(total<10){
System.out.println("今天手气很差");
}
}
}