0% found this document useful (0 votes)
2 views1 page

Sample Flowgorithm Print

The document outlines a program that prompts users to enter scores for three courses and calculates the average score. If the average is 75 or higher, the user is promoted to the next class; otherwise, they receive a message wishing them better luck next time. The program includes input and output statements for user interaction.

Uploaded by

the batman
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

Sample Flowgorithm Print

The document outlines a program that prompts users to enter scores for three courses and calculates the average score. If the average is 75 or higher, the user is promoted to the next class; otherwise, they receive a message wishing them better luck next time. The program includes input and output statements for user interaction.

Uploaded by

the batman
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Main

Amal
GS
[Link].
URCHE240080
Session 1 Question
1
08 August 2024

Real a, b, c, avg, sum

Output "Enter the scores


obtained in three courses
one by one"

Input a

Input b

Input c

sum = a+b+c

avg = (sum/3)*100

Output "The average test


score is" &avg

False True
avg>=75.0

Output "Better luck next Output "You are promoted


time" to the next class"

End

You might also like