Computer Science, asked by daiwiksura25, 2 months ago

Write a Python Program for the given criteria:

i. Input 3 subject marks

ii. Find the average

iii. if the average is greater than 35, status Is Pass. Otherwise Fail.

Output:​

Answers

Answered by shribhagwan56
0

Answer:

follow me I tell answer

Answered by shobanashankar
0

Answer:

sub 1 = int ( input (" Enter physics mark:"))

sub 2 = int ( input (" Enter chemistry mark:"))

sub 3 = int ( input (" Enter maths mark:"))

avg = (sub 1 + sub 2 + sub 3) / 3

if (avg>35):

print ("congratulations!!!. you are pass")

else:

print (" work hard. you are fail")

Similar questions