write a progrramme in QBASIC to print your name, class, roll no. and school using input statement and show the output statement tooo
Answers
Answered by
2
Explanation:
Cls
Input "Enter name"; N$
Input "Enter class"; C$
Input "Enter roll no. "; RN
Input "Enter Subject "; SUB$
Input "Enter school name "; S$
Print "Name : "; N$
Print "Class : "; C$
Print "Roll No : "; RN
Print "Subject : "; SUB$
Print "School : "; S$
End
Similar questions