Tagged Questions

1
vote
2answers
356 views

Why do my Perl bigints have a decimal place?

If I do use a big integer in substr: use BigInt; $acct_hash = substr(('99999999999912345' + $data[1]),0,15); why is the result still 9.9999999999912? I was expecting 999999999999912. Is there ...
1
vote
1answer
192 views

Why do I get a decimal point in my BigInt numbers?

Adding 15 digit numbers like 999999999999990 in Perl produces results with a period such as 1.9999999999999e+. When using substr it still produces 1.99999999999, and when using BigInt the result still ...