Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9290399
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T20:24:39+00:00 2026-06-18T20:24:39+00:00

For some reason, BigInteger isn’t working as I’d like. I’m doing BigVariable.add(BigVariable), but it

  • 0

For some reason, BigInteger isn’t working as I’d like. I’m doing BigVariable.add(BigVariable), but it won’t add. It the result is always the value it’s initialized to. Anyone know what I’m missing? Thanks in advance

The code is for project euler 48

import java.math.BigInteger;


public class tuna {
public static void main(String[] args) {
    BigInteger result = BigInteger.ZERO;
    for(int i= 1; i <= 1000; i++)
        result.add( bigPow(BigInteger.valueOf(i), i) );
    System.out.println(result);
}
public static BigInteger bigPow(BigInteger number, int pow){
    if(pow < 1)
        throw new RuntimeException("bigPow can't handle exponents lower than 1");
    if (pow == 1)
        return number;
    return number.multiply( bigPow(number, pow-1) );
}

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T20:24:41+00:00Added an answer on June 18, 2026 at 8:24 pm

    Try:

    result = result.add( bigPow(BigInteger.valueOf(i), i) );
    

    instead of:

    result.add( bigPow(BigInteger.valueOf(i), i) );
    

    You need to do this because BigInteger is immutable (Immutable arbitrary-precision integers). So you need to reassign the result.

    add

    public BigInteger add(BigInteger val)

    Returns a BigInteger whose value
    is (this + val). Parameters: val – value to be added to this
    BigInteger. Returns: this + val

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason this isn't working, am I missing something obvious? RewriteRule ^(.*)infopopup.html$ /acatalog/infopopup.html
For some reason, the Google API expects longs instead of objects (like Color). What
For some reason, my spec isn't passing. It appears that @categories isn't getting to
For some reason, I have to change the default value of one parameter 'param'
For some reason, it seems the Add operation on a HashSet is slower than
For some reason my webservice does not like the data I'm sending it. I
For some reason, I've always assumed that readonly fields have overhead associated with them,
For some reason with Safari, but not other browsers, a jPlayer playlist doesn't advance
For some reason the spinner object is working only if it is defined inside
I am trying to implement the RSA algorithm , but for some reason my

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.