Hey there, i have been given a task to complete as home work for college and i seriously have no idea how to do it, hopeing one of you guys would be able to shed some light on it for me?
Well here it is.
You have been asked to create a program that prompts the user for the score for a multiple choice test; there are 20 questions, each questions scores 0 or 1 point (i.e no half-points), so the max score a student can achieve is 20, and the minimum score is 0.The program will loop with the folowing complex condition, written here in pseudocode:
WHILE(SCORE>=0) AND(SCORE<=20) DO
The number of people in a class varies, so loop until a score outside the range has been typed in (check to make sure that this number does not get included in with the test scores and class average). After the loop is finished, display the clas average, and the total number of people who took the test.
Any help that anyone could shed on this would be greatly appreciated.
Greg