Computer Science, asked by daminipatel721, 8 days ago

Draw a flowchart to find average of their number, lf average is less than 20 print " less" otherwise print more​

Answers

Answered by SubwayDementor
1

Answer:

sub1=int(input("Enter marks for the respective topic: "))

sub2=int(input("Enter marks for the respective topic: "))

sub3=int(input("Enter marks for the respective topic: "))

avg=(sub1+sub2+sub3)/3

if (avg>=20):

   print("More")

elif (20>avg):

   print("Less")

Similar questions