select count(*)
from (select sId,avg(score) as a
from SC
where cid in (select cid from Course where cname in ('语文','数学','英语'))
group by sId) b
where a >60;

select count(*)
from (select sId,avg(score) as a
from SC
where cid in (select cid from Course where cname in ('语文','数学','英语'))
group by sId) b
where a >60;