Monday, February 6, 2012

sum of digits of power(2,1000)

-->
import java.math.BigInteger;
/*
 * bhatt.umang7@gmail.com
 */

/**
 @author umang
 */
public class Prob_16
{
    public static void main(String args[])
    {
        BigInteger base = new BigInteger("2");
        BigInteger ans = base.pow(1000);
        int sum = 0;
        String ansStr = ans.toString();
        for (int i = 0; i < ansStr.length(); i++)
        {
            sum += Integer.parseInt("" + ansStr.charAt(i));
        }
        System.out.print(sum);
    }
}

No comments:

Post a Comment