write an algorithm to accept the marks in three subjects out of 100 each. Calculate the total marks and percentage. Print marks total marks and percentage
Answers
Answered by
5
Answer:
INPUT cs, maths, phy
COMPUTE avg := (cs + maths + phy) / 3
COMPUTE percentage := ((cs + math + phy) / 300) * 100
PRINT avg
PRINT percentage
Similar questions