07 2022 档案
根据用户输入的年月日 判断该日期是星期几 1900/1/1是星期一
摘要:方法一: Scanner input = new Scanner(System.in); Calendar cal=Calendar.getInstance(); System.out.println("请输入年:"); int year=input.nextInt(); System.out.pr
经典排名问题(相同分数是否要并列,排名是否有间隔)
摘要:drop table if exists score; create table score( sc_id int primary key not null auto_increment, sc_exam int not null ); insert into score values(1,89),