BEGIN
INPUT C
F = (9/5 x C) + 32
DISPLAY F
END
2. 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.
INPUT P, C, B
TOTAL = P + C + B
AVERAGE = (P+C+B)/ 3
DISPLAY TOTAL, AVERAGE
END
3. Write flowchart to check a any number (0-N), is it a prime?
No comments:
Post a Comment