Asked by Anonymous
Write an algorithm to compute average score for each student in the Computer Science Continuous assessment test. Assume each student sat for ten courses for the semester
Answers
Answered by
Steve
total=0
n=10
for (i=1..n) total += test[i]
avg = total/n
n=10
for (i=1..n) total += test[i]
avg = total/n
Answered by
tauhid
yes
Answered by
longpards
Input A, B and C
Calculate the average sore of 3 students by adding A, B and C
If the average is greater than 50
print "pass"
else
print "fail"
Calculate the average sore of 3 students by adding A, B and C
If the average is greater than 50
print "pass"
else
print "fail"
Answered by
KANDIKUNTA PADMAVATHI
please send me code in c
Answered by
Umar hussaini shettima
Hussaini
Answered by
Anonymous
Assume there are 163 students in your class, write the algorithm that would compute the average for each student.