Computer Science, asked by ALXbxnx, 10 days ago

Draw a flowchart to accept three terms exam mark entered by user print the total and average.​

Answers

Answered by hulumgola10
1

Cls

Let T = 0

Let AVG = 0

Input "Enter name"; N$

For I = 1 To 12

Input "Enter marks"; M

T = T + M

Next I

AVG = T / 12

Print "Name - "; N$

Print "Total marks -"; T

Print "Average marks - "; AVG

End

Attachments:
Similar questions