Computer Science, asked by abiprasath, 10 months ago

Write a pseudo code and flowchart to accept a student’s marks in Physics,

Chemistry, and Biology. The total of these marks as well as the average should be

displayed.​

Answers

Answered by harshblogspot
6

Answer:

Take input for marks

bio = input("what are bio marks")

phy = input("what are bio marks")

che = input("what are bio marks")

print("Avrage is ", (phy+bio+che)/3, "total = ", bio + phy + che)

Explanation:

Similar questions