vote up 0 vote down star

Does any one how can I calculate pi (π) in VB??

example: how can I calculate 2π in VB??

flag

how many digits do you want? – Mitch Wheat Apr 26 at 6:34
Voting to close, since "how do I get the value of pi" is so trivial as to be a useless question, and "how do I calculate pi" is not programming related. The question is sufficiently ambiguous that who knows which one he means. – mquander Apr 26 at 6:37
8  
Just because the question is trivial to you does not make it trivial to a newcomer to programming. – TheTXI Apr 26 at 6:38
2  
Read the SO FAQ. No question is too trivial or beginner. – Mehrdad Afshari Apr 26 at 15:19

6 Answers

vote up 10 vote down check
System.Math.Pi
link|flag
vote up 12 vote down

Assuming you actually want to compute pi instead of just using the built in constants, there are a bunch of ways that you can do it. Here are a few links that could be useful:

link|flag
Upvoting as this is a more interesting answer. – BobbyShaftoe Apr 26 at 7:56
vote up 5 vote down

If you mean VB6, it doesn't have a pi constant. You can use:
Dim pi as Double
pi = 4 * Atn(1)

link|flag
vote up 2 vote down

If the OP is asking about algorithms as a learning experience, good for him/her.

If the OP wanted help finding the built-in value, s/he has it now.

But if the goal is a good value of higher precision than the built-in value with a minimum of effort, here's pi to one million digits:

http://www.eveandersson.com/pi/digits/1000000

That should be enough.

I hope the OP isn't asking how to recalculate the value of Pi each and every time it's used. That would be madness.

link|flag
vote up 0 vote down

Meh, so efficient, accurate and most of all boring approximations... Try this instead! Pseudocode ensues:

  • initialize inside and total as 0
  • repeat an insane amount of times:
    • assign both x and y random values between (and including) 0 and +1.
    • assign distance as the square root of (x2 + y2)
    • if distance ≤ 1, add 1 to inside
    • add 1 to total
  • assign pi as inside / total * 4
link|flag
vote up -4 vote down

If you don't want to use the built in values in the .net math library...

22 / 7

link|flag
There so several better fractional approximations than 22/7... – Mitch Wheat Apr 26 at 6:34
but use the buil-tin value! – Mitch Wheat Apr 26 at 6:35
I don't advocate for the use of a fractional approximation vs. the built in value at all, and 22/7 was the first one I could think of off the top of my head :) – TheTXI Apr 26 at 6:36
355/113 is a better approximation :) – Mitch Wheat Apr 26 at 6:59
2  
I would rather use a constant float value like 3.14159, rather than 22/7 which is an inaccurate approximation. 22/7 produces the value 3.142857 and it is only useful for elementary school kids. ;-) – Cerebrus Apr 26 at 7:29
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.