I'm sure nobody's thought of this one: Monte Carlo simulation. It's a pathetic way to calculate pi (n has to be ridiculously huge for it to converge nicely), but it helps show-off your knowledge of probability and geometry.
4*sum(rand(n,1).^2 + rand(n,1).^2 <= 1)/n
The above is Matlab code, if you're wondering if I've gone crazy or not. .^ means component-wise exponentiation, and rand(n,1) is a vector of length n of random numbers in [0,1].
Edit: Oh yeah, and I'm summing over a logical array (figure it out).