//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("缴税");
}
}
}