Tagged Questions

0
votes
2answers
45 views

PHP integer exponentiation (super large numbers)

Using PHP I want to do millions of 2^n exponentiation but so far I only got up to n^1023 before PHP printed INF. Any ideas?
5
votes
3answers
764 views

Handling very large numbers in Python

I've been considering fast poker hand evaluation in Python. It occurred to me that one way to speed the process up would be to represent all the card faces and suits as prime numbe …
3
votes
4answers
850 views

infinite loop in c++

I'm learning C++ and writing little programs as I go along. The following is one such program: // This program is intended to take any integer and convert to the // corresponding …