I am trying to do pow(2,500) in C++. But I think long long is not enough.

Someone told me I can use gmp.h. But I couldn't find out how can I do a pow(2,500) in gmp.

Can you please help? thanks.

link|improve this question

What have you got so far? – Kerrek SB Jan 8 at 1:33
Already answered. Try this answer for example. – Alex Jan 8 at 1:39
possible duplicate of storing more than 2 power 31 on a 32-bit system – Alex Jan 8 at 1:40
@Alex: Sorry, your answer is not suitable for the question, which asks for a GMP-based solution. (Why? Because GMP is much more memory-efficient than your solution.) A decimal-expansion-based solution is okay if you are in a programming contest where you can't use external libraries. Otherwise, it's a really suboptimal approach. – Chris Jester-Young Jan 8 at 3:42
@Alex: More specifically, in a decimal-expansion solution, you are using a whole char to store 3.322 bits of data. That means you have a 58.5% wastage in space. – Chris Jester-Young Jan 8 at 3:48
show 2 more comments
feedback

1 Answer

up vote 3 down vote accepted

Read the fine manual: Integer Exponentiation :-D

(Hint: choose either of the bottom two functions.)

link|improve this answer
That's probably a comment and not quite an answer, but the again the OP isn't quite a question... – Kerrek SB Jan 8 at 1:33
@KerrekSB: It actually is an answer: the bottom two functions listed on that page will do exactly as required. If you think it's better to write that into the answer, that can be done, but is less ideal, because I want to encourage the OP to do some reading of their own. – Chris Jester-Young Jan 8 at 1:37
feedback

Your Answer

 
or
required, but never shown

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