I have a problem with big numbers in double variables. Imagine I have 3 numbers like this:
124.556321466
120.00
1.79769313486232E+308
I just want to recognize item 2 or those numbers that don't have any valuable number after floating point. In other words those numbers can be integers and the lengths of numbers are not the same.
Two additional things:
- I don't want to convert them to string because it is really time consuming for the CPU.
- I can't convert them to integer because I need all the digits.