90.5k views
5 votes
8 Write a program to accept two numbers in two line
rind square root of squares of them​

8 Write a program to accept two numbers in two line rind square root of squares of-example-1

1 Answer

3 votes

Explanation:

REM PROGRAM TO DISPLAY SQUARE ROOT OF INPUT NUMBERS

CLS

INPUT “ENTER ANY NUMBER”; N

INPUT "ENTER ANOTHER NUMBER "; K

S = N ^ (1 / 2)

P = N ^ (1 / 2)

PRINT “SQUARE ROOT OF NUMBER ”; S,P

END

User Merchmallow
by
4.3k points