问题描述: 从键盘读入学生成绩,找出最高分,并输出学生成绩等级. 成绩>=最高分-10 等级为’A’ 成绩>=最高分-20 等级为’B’ 成绩>=最高分-30 等级为’C’ 其余等级为’D’ 提示:先读入学生人数,根据人数创建int数组,存放学生成绩. 请输入学生人数:5 请输入5个成绩 56 74 89 41 89 最高分是:89 student 0 score is 56 grade is D student 1 score is 74 grade is B stu
23.查询"张旭"教师任课的学生成绩. select * from score s where cno in ( select cno from course where tno in( select tno from teacher where tname = '张旭')) 24.查询选修某课程的同学人数多于5人的教师姓名. select tname from teacher where tno in ( select tno from course where cno in ( s