Computer Science, asked by duaengg1, 18 hours ago

Write a program to enter the marks you scored in English and print 'Excellent' if your marks are above 90, otherwise print 'Good'.​

Answers

Answered by ConstellationGuy
0

Answer:

CLS

INPUT "ENTER YOUR MARKS";N

IF N > 90 THEN

PRINT "EXCELLENT"

ELSE

PRINT "GOOD"

END IF

END

HOPE IT HELPS

PLS MARK BRAINLIEST

Similar questions