Write Qbasic program to input two numbers and print their subtraction.
Answers
Answered by
2
Answer:
Input" Enter the marks in Science" ;S. Input" Enter the marks in Nepali" ;N. Let S=E+M+S+N. Let A=S/4. Print " The name of the student is" ;N$. Print " The total marks is" ;S. Print " The Average marks" ;A. End.
Answered by
0
Answer:
CLS
INPUT "ENTER TWO NUMBERS"; A,B
C = A-B
PRINT "THE SUBSTRACTION OF THE TWO NUMBERS= ";C
END
Similar questions