Computer Science, asked by ankitmajumder052, 8 months ago

write a program in Qbasic to enter name of a student and marks obtained in6 subjects

Answers

Answered by sankarinava30
2

Answer:

PLZZ SUPPORT ME GUYS

Explanation:

CLS

INPUT " Enter the student's name " ; NS

INPUT " Enter the marks obtained in first subject " ; MFS

INPUT " Enter the marks obtained in second subject ";MSS

INPUT " Enter the marks obtained in third subject " ; MTS

INPUT " Enter the out total marks " ; OTM

LET TM = MFS + MSS + MTS

LET P = TM / OTM * 100

PRINT " Student name is " ; NS

PRINT " The total marks obtained is " ; TM

PRINT " The percentage is " ; P

END

Similar questions