作业~~~~

//1.判断是不是闰年
class HomeWork1 {
    public static void main(String[] args) {
        int year = 2000;
        
        if ((year % 4 == 0 && year % 100 != 0) || (year % 400 ==0)) {
            System.out.println("是闰年");
        } else {
            System.out.println("不是闰年");
        }
        
        
    }
}

//2.完成条件:判断一个字符是不是大写英文字符
class HomeWork2 {
    public static void main(String[] args) {
        char ch = 'Z';
        
        if (ch >= 'A'&& ch <= 'Z') {
            
            System.out.println("大写字母");
        } else if(ch >= 'a'&& ch <= 'z'){
            
            System.out.println("小写字母");
        } else {
            System.out.println("无匹配项");    
        }
        
        
    }
}

//3.完成条件,判断一个字符是不是英文字符

class HomeWork3 {
    public static void main(String[] args) {
        char ch = '*';
        
        if ((ch >= 'A'&& ch <= 'Z')||(ch >= 'a'&& ch <= 'z')){
            System.out.println("是字母");
        } else {
            System.out.println("不是字母");
        }
        
    }
}

//4.完成条件,使用if判断完成对应90后00后判断,用户输入年龄,判断情况
import java.util.Scanner;
class HomeWork4 {
    public static void main(String[] aegs) {
        int age = 0;
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入一个整数");
        age = sc.nextInt();
        
        if (age >= 13 && age >=22) {
            System.out.println("00后");
        } else if (age >= 23 && age >=32) {
            System.out.println("90后");
        } else {
            System.out.println("老的算90后,小的算00后");
        }
        
    }
}

//5.用户输入一个数值,判断是不偶数
import java.util.Scanner;
class HomeWork5 {
    public static void main(String[] args) {
        int num = 0;
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入一个整数");
        num = sc.nextInt();
        
        if (num % 2 ==0) {
            System.out.println("偶数");
        } else {
            System.out.println("奇数");
        }
        
    }
}

//6.用户输入自己的工资,判断是否需要缴税

import java.util.Scanner;
class HomeWork6 {
    public static void main(String[] args) {
        double salary = 0;
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入你的工资查看是否需要缴税");
        salary = sc.nextInt();
        
        if (salary < 5000) {
            System.out.println("不缴税");
        } else {
            System.out.println("缴税");
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值