I’d like to know what the 2e+08 format in programming means?
I have some data related to project budget. How to convert it into integer in Java ?
I’d like to know what the 2e+08 format in programming means? I have some
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
2e+08means 2 multiplied by 10^8. In other words, 2 followed by 8 zeros:To convert it to an
intwe can simply cast:All of the following are equivalent in Java:
2e+08,2e08,2e8,2E+08,2E08,2E8.