Write algorithm and flow chart for finding sum of six subjects and percentage of total marks
Answers
Answered by
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
Social Sciences,
17 days ago
English,
17 days ago
English,
17 days ago
Math,
1 month ago
Computer Science,
9 months ago
Math,
9 months ago
India Languages,
9 months ago