Qbasic Program to print the cube root of a given number
Posted by Mahibabu
REM Program to print the cube root of a given number
CLS
INPUT "Enter any number"; n
c = n ^ 1 \ 3
PRINT "Cube root is"; c
END
Hi, I am Mahesh Bhandari from Kathmandu, Nepal.
Posted by Mahibabu
REM Program to print the cube root of a given number
CLS
INPUT "Enter any number"; n
c = n ^ 1 \ 3
PRINT "Cube root is"; c
END
2 comments
It was of great help. Thanks!!!!
give me your number