I have to write a program that can calculate the powers of 2 power 2010 and to find the sum of the digits. eg:
if `2 power 12 => gives 4096 . So 4+0+9+6 = 19 .
Now i need to find the same for 2 power 2010.
Please help me to understand.
|
|
Here's something to get you started:
|
|||||||||||||||||||
|
|
You have to either use a library that supplies unlimited integer length types (see http://en.wikipedia.org/wiki/Bignum ), or implement a solution that does not need them (e.g. use a digit array and implement the power calculation on the array yourself, which in your case can be as simple as addition in a loop). Since this is homework, probably the latter. |
|||||
|
|
Knowing 2^32, how would you calculate 2^33 with pen and paper?
Just be aware that 2^2011 is a number with more than 600 digits: not that many to do by computer |
|||
|
|
|
GMP is perhaps the best, fastest free multi-architecture library for this. It provides a solid foundation for such calculations, including not only addition, but parsing from strings, multiplication, division, scientific operations, etc. For literature on the algorithms themselves, I highly recommend The Art of Computer Programming, Volume 2: Seminumerical Algorithms by Donald Knuth. This book is considered by many to be the best single reference for the topic. This book explains from the ground up how such arithmetic can take place on a machine that can only do 32-bit arithmetic. If you want to implement this calculation from scratch without using any tools, the following code block requires requires only the following additional methods to be supplied:
divModByTen should divide replace num in memory with the value of num / 10, and return the remainder. The implementation will take some effort, unless a library is used. isZero just checks if the number is all zero's in memory. Once we have these, we can use the following code sample:
|
|||||
|
|
This takes only a few lines of code in Delphi... :) So in c must be the same or shorter.
-----EDIT----- This is 1-to-1 c# version.
|
|||||||||||||||||
|
|
Here's how you can calculate and print 22010:
You can now sum up the individual digits. |
|||
|
|