C/C++ How I can calculate numbers in C++

  • Thread starter Thread starter Jameson
  • Start date Start date
  • Tags Tags
    C++ Numbers
AI Thread Summary
To calculate numbers with high precision beyond the typical 19 digits, multi-precision arithmetic is essential. This approach involves storing the digits of a number in separate arrays or classes and performing arithmetic operations on these individual digits. Various algorithms exist for addition, subtraction, multiplication, and division in multi-precision, which can be found through online searches. Another method suggested is using string inputs for numbers, allowing for calculations by aligning the digits and processing them in reverse order. For those using programming languages like C++, declaring a 64-bit variable can accommodate large integers, but it is limited to specific compilers. In Unix systems, alternatives like int64_t or uint64_t are recommended. Ultimately, utilizing a dedicated big number library is advised for handling calculations that exceed standard data type limits.
Jameson
Insights Author
Gold Member
MHB
Messages
4,533
Reaction score
13
Who can tell me how I can calculate numbers to as many digits as I see fit? The normal libraries can only hold 19 or so, which is waaayyy less than I want. Any help is appreciated.

Jameson
 
Technology news on Phys.org
Jameson said:
Who can tell me how I can calculate numbers to as many digits as I see fit? The normal libraries can only hold 19 or so, which is waaayyy less than I want. Any help is appreciated.

Jameson

You need to use multi-precision arithmetic. You can write your own or can get the code elsewhere. Essentially, the digits of a number (real or integer) are stored separately in arrays, classes whatever. And you do the arithmetic on the separate digits. There are elegant algorithms for doing subtraction, multiplication, division, and addition in multi-precision. Should be able to google for the algorithms.
 
Hi,
I think what you need is inputs of string. Then you can analyze the string and calculate them. For example, you want calculate 35 + 244
You will ask the user give you 2 strings "35", and "244", and the operator as well, i.e. :"+".
And here is what I did:
+ Make the 2 numbers have the same length "035", and "244"
+ Use the loop to convert to number and calculate each degit backwards, i.e. : 5 + 4, 3 + 4, and 0 + 2.
+ Print out the result.
It's a little bit more tricky if you work with rational numbers like "3.5", "2.44".
I finished the addition, subtraction, as well as multiplication, but not in C++, I programmed in DB. If you want, I can show you my work.
Viet Dao,
 
You can declare a 64-bit variable using

__int64 variable;

I'm not sure how many digits that will allow, but it's pretty big.
 
The largest unsigned 64bit integer is 2^64-1 = 18446744073709551615

The largest signed 64bit integer is 2^63-1 = 9223372036854775807
 
Last edited:
Of course dduardo means 2^64 - 1 = 18446744073709551615 :smile:

__int64 will only work in microsoft compilers. (As will _int64 and int64)
In *nix systems, you'll want int64_t, or uint64_t. (they're in <inttypes.h>, I think)
For many compilers, long long will do it.

But as mentioned, you'll want to find a big number package.
 
Last edited:
Hurkyl, your right. The signed figure is still correct.
 
Headache. . . headache. . .
 

Similar threads

Back
Top