Computer Science, asked by rosminroseprasanth12, 17 days ago

Write a program to find the sum and product of two numbers 10, 5

Answers

Answered by hasinithirukovaluri
1

Answer:

QBasic Programming

REM PROGRAM TO DISPLAY SUM, DIFFERENCE, PRODUCT AND AVERAGE OF TWO NUMBERS. CLS. INPUT “ENTER FIRST NUMBER”; A. ...

DECLARE SUB SUM (A, B) DECLARE SUB DIFF (A, B) DECLARE SUB PROD (A, B) ...

SUB SUM (A, B) S = A + B. PRINT “SUM OF TWO NUMBERS”; S. ...

DECLARE FUNCTION SUM (A, B) DECLARE FUNCTION DIFF (A, B)

hope it helped

pls mark the answr as brainliest

Explanation:

Similar questions