Computer Science, asked by amirthavarshini25200, 5 months ago

18. Rewrite the program by correcting the error. Mark the corrections
for i in range(0.,10);
mark 7 = int(input("Enter a mark"))
if mark > 80 && mark <=100:
print (" Distinction ')
else if mark > 40 and mark < 81:
print ("First Class")
else
print ("Reappear")​

Answers

Answered by MoniReddy
0

Answer:

..............................................

Answered by jai696
1

\huge\red{\mid{\fbox{\tt{Using\: Python\: 3}}\mid}}

for i in range(10):

marks = int(input("Enter marks: "))

if 80 < marks <= 100:

print("Distinction")

elif 40 < marks < 81:

print("First Class")

else:

print("Reappear")

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions