How to insert the square root symbol
tsri_badr_esgi
Posted messages
530
Registration date
Status
Membre
Last intervention
-
qbasic45 Posted messages 60 Status Membre -
qbasic45 Posted messages 60 Status Membre -
Hello everyone,
I am currently making a calculator and I want to insert the square root symbol as text for a button that will calculate the square root, but I don't know how to do that. I know that using an image is possible, but can we do it without an image?
Thank you very much.
Configuration: Windows 7 / Chrome 24.0.1312.52
I am currently making a calculator and I want to insert the square root symbol as text for a button that will calculate the square root, but I don't know how to do that. I know that using an image is possible, but can we do it without an image?
Thank you very much.
Configuration: Windows 7 / Chrome 24.0.1312.52
Microsoft provides good answers, good luck since qbasic!
http://msdn.microsoft.com/en-us/library/9hxt0028%28v=vs.80%29.aspx
- this is just a research hint, not a certainty, thank you!
in QBasic for the square root
cls : print " the square root of " ;
input a
print " the square root is " ; sqr(a)