java-if循环

2020-10-20  本文已影响0人  测试探索
package com.lemon.operator;

public class IfDemo {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        
        int age = 18;
        if(age >=18) {
            System.out.println("成年了");
        }
        
        System.out.println("程序结束");
        
        //if第二种格式
        String user = "zs";
        String password = "123456";
        if(user == "zs" && password == "123") {
            System.out.println("用户名密码正确");
        } else {
            System.out.println("用户名密码错误");
        }
        
        //if三种格式
        int score = 60;
        if(score >= 90 && score <=100) {
            System.out.println("优秀");
        } else if(score >= 80 && score <90) {
            System.out.println("良好");
        } else if(score >= 60 && score <80) {
            System.out.println("及格");
        } else if(score >= 0 && score < 60) {
            System.out.println("不及格");
        } else {
            System.out.println("输入错误");
        }
    }

}

//结果
成年了
程序结束
用户名密码错误
及格
上一篇下一篇

猜你喜欢

热点阅读