Site icon Pathshala Nepal

Write a program to input a number and print the square root of the number.

Q BAISC OS
Online Calculator

Write a program to input a number and print the square root of the number.


1 Answer


CLS

INPUT"ENTER A NUMBER";NUM

SQ = SQR (NUM)

PRINT"THE SQUARE ROOT OF NUMBER IS"; SQ

END

 

Topics from Computer
Related Questions