Ask Me Help Desk

Ask Me Help Desk (https://www.askmehelpdesk.com/forum.php)
-   Visual Basic (https://www.askmehelpdesk.com/forumdisplay.php?f=469)
-   -   Solution that I believe is more accurate (https://www.askmehelpdesk.com/showthread.php?t=194803)

  • Mar 15, 2008, 05:02 AM
    krishnadas
    Solution that I believe is more accurate
    Sir
    I want to know about the codes to create a scientific calculator in vb.net with examples
  • Apr 29, 2008, 01:16 PM
    melondotnet
    Can you please give us a list of operation you would like us to produce answers for.

    Here are some simple things.

    Roots (Square root of 4) can be written as powers:

    EXAMPLES (The Carat [^] is the Shift of 6. It simply means the following number is index of the previous number)

    SQRT(4) = 4 ^ 1/2 = 2
    3rdRT(8) = 8 ^ 1/3 = 2
    4thRT(8) = 16 ^ 1/4 = 2

    There is also a Math.SQRT function I think.

    Sins, Cos, Tans can be found in Math.Sin()/Cos()/Tan()

  • All times are GMT -7. The time now is 09:19 PM.