A student will receive scholarship if the high school academic rating average is above 95 or the number of varsity letters earned is at least 10 and the high school academic rating is above 75. RTU will grant scholarship only for the first 50 qualified students. Write an algorithm and draw a flowchart that will determine the first 50 successful applicants.
1
Expert's answer
2021-10-08T04:34:54-0400
start
count =0is academic rating>75
eligible for admission
for(int i=0;i<50;i++)
if(obtained mark>95)
admission allowed;
count++
else not eligible for admission
end
Comments