Computer Studies

Draw a flowchart and write a program in QBASIC to enter two numbers. Subtract the second number from the first if the first number is greater than the second number or vice-versa.

QBASIC: Conditional Statements

54 Likes

Answer

Flowchart

Draw a flowchart and write a program in QBASIC to enter two numbers. Subtract the second number from the first if the first number is greater than the second number or vice-versa. Class 7 ICSE Understanding Computer Studies

QBASIC Program

Cls
Input "ENTER A NUMBER"; A
Input "ENTER ANOTHER NUMBER"; B
Let ANS = 0
If A > B Then ANS = A - B Else ANS = B - A
Print "ANSWER = ";ANS
End

Output

ENTER A NUMBER? 70
ENTER ANOTHER NUMBER? 20
ANSWER = 50

Answered By

40 Likes


Related Questions