Computer Science, asked by rehangondal1234, 7 months ago

write a program called cheak pass fail which points "pass"if the int variable"mark"is more than or equal to 50 ; points"Fail " otherwise.​

Answers

Answered by aviralrastogi0p4uudc
1

Answer:

if ( mark >=50 ):

   print("pass")

else:

   print("fail")

Similar questions