Computer Science, asked by jogendrasharma234, 13 hours ago

write a qbasic program to input name roll number class and obtained marks of any five subject of student and calculate and find percentage​

Answers

Answered by danitjacob3
1

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