作业~~~~
//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') {
作业~~~~最先出现在Python成神之路。
共有 0 条评论