美文网首页
java-if循环

java-if循环

作者: 测试探索 | 来源:发表于2020-10-20 06:51 被阅读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("输入错误");
            }
        }
    
    }
    
    //结果
    成年了
    程序结束
    用户名密码错误
    及格
    

    相关文章

      网友评论

          本文标题:java-if循环

          本文链接:https://www.haomeiwen.com/subject/yisrmktx.html