java3.2分支结构

3.2.1if分支结构
在这里插入图片描述
范例:使用if语句判断

public class Fortysix01 {
       public static void main(String[] args) {
		int age=20;
		if(age>=18&&age<=22) {
			System.out.println("我是个大学生");
		}
		System.out.println("我要继续拼搏");
	}
}
执行结果
我是个大学生
我要继续拼搏

范例:使用if…else结构

public class Fortysix02 {
       public static void main(String[] args) {
		double money=20.00;//当前口袋全部资产
		if(money>=19.8) {//19.8为饭费,大于饭费可以购买
			System.out.println("霸气的掏出钱");
		}else {//资产不够时
			System.out.println("饿着");
		}
		System.out.println("好好学习好好吃饭");//判断之后的执行语句
	}
}
执行语句
霸气的掏出钱
好好学习好好吃饭

范例:多条件判断

import java.util.Scanner;

public class Fortyseven {
        public static void main(String[] args) {
			Scanner sc=new Scanner(System.in);
			System.out.print("请输入您的成绩:");
			double score=sc.nextDouble();
			while(score<0||score>100) {
				System.out.println("输入不正确,请重新输入:");
				 score=sc.nextDouble();
			}
			if(score==0) {
				System.out.println("鸡蛋");
			}else if(score>0&&score<60) {
				System.out.println("不及格");
			}else if(score>=60&&score<70){
				System.out.println("一般");
			}else if(score>=70&&score<80) {
				System.out.println("良好");
			}else if(score>=80&&score<90) {
				System.out.println("好");
			}else if(score>=90&&score<100) {
				System.out.println("优秀");
			}else if(score==100) {
				System.out.println("完美");
			}
		}
}
执行结果
请输入您的成绩:-85
输入不正确,请重新输入:
95
优秀
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值