Draw flow chart and write algorithm description that accepts three marks of the student then print the mark which greater than the average marks of the student?

2 answers

read m1,m2,m3
avg = (m1+m2+m3)/3
if m1 > avg then print m1
else if m2 > avg then print m2
else print m3
flowchart?