I'm stuck with a problem and I have to display these numbers correctly using the power of ten. I know that the number in the end has to do with the fact that the decimal point is shifted the number to the right, only how I can do it or how I have to parse the number is a mystery to me. I have the numbers as a string
The whole thing is written in C #
"1.11632e+007"
"1.30357e+008"
The result must look like this The output can be as int or string does not matter
11163200
130357000
I have no idea how to do this. Can you help me?