
Anonymous
Not applicable
2018-02-06
04:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to convert Scientific numbers to Int
Hi Folks,
I have scientific format number and I want to convert this to integer.
2.5e17 to normal number.
Regards,
Deepak
589 Views
4 Replies

Champion II
2018-02-06
04:46 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Deepack,
This a standard Java topic.
You can refer to this link https://stackoverflow.com/questions/2546147/java-convert-scientific-notation-to-regular-int or search for "java convert scientific notation to integer" using Google.
589 Views

Champion II
2018-02-07
03:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Does this help?
If so, thank's to close the case by selecting the most usefull answer.
Kudos also accepted.
589 Views

Creator
2018-02-07
07:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Deepak,
You can use the following java statement.
Double.valueOf("2.5e17").longValue();
589 Views

Champion II
2018-02-07
03:54 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Deepack1,
It's normal to ask questions when learning new things and this is the place for that.
It's also just normal to say thank's to people trying to help you for free and to give feedback regarding the proposed solutions.
It's normal to ask questions when learning new things and this is the place for that.
It's also just normal to say thank's to people trying to help you for free and to give feedback regarding the proposed solutions.
589 Views
