1,编写程序,判断给定的某个年份是否是闰年。 闰年的判断规则如下: (1)若某个年份能被4整除但不能被100整除,则是闰年。 (2)若某个年份能被400整除,则也是闰年。 import java.util.Scanner; class Bissextile{ public static void main(String[] arge){ System.out.print("请输入年份"); int year; //定义输入的年份名字为“year” Scanner scanner = new S
DATA SEGMENT GRADE DB 76,69,84,90,73,88,99,63,100,80 MES1 DB '60-69:$' MES2 DB '70-79:$' MES3 DB '80-89:$' MES4 DB '90-99:$' MES5 DB '100:$' C1 DB 0 C2 DB 0 C3 DB 0 C4 DB 0 C5 DB 0 CNT EQU 10 DATA ENDS STACK SEGMENT PARA 'STACK' DB 100 DUP(0) STACK