Computer Science, asked by satyap9227, 1 month ago

Write algorithm and flow chart for finding sum of six subjects and percentage of total marks

Answers

Answered by Aditya4111Upadhyay
0

Answer:

Algorithm Written in Python:

subject_1= int(input('Write the marks of the first Subject: '))

subject_2= int(input('Write the marks of the second Subject: '))

subject_3= int(input('Write the marks of the third Subject: '))

subject_4= int(input('Write the marks of the fourth Subject: '))

subject_5= int(input('Write the marks of the fifth Subject: '))

subject_6= int(input('Write the marks of the sixth Subject: '))

Total= subject_1+subject_2+subject_3+subject_4+subject_5+subject_6

percent= Total/100

print('The percentage of your total marks is: ', percent)

Similar questions