Scientific Notation

Classic programmed-learning exercises, refreshed for modern Java and presented in the current MrStyner.com portfolio style.

Modern Java noteThis archive has been refreshed for Java 25 LTS. Core language concepts remain useful, while outdated setup instructions and browser-era Java are labeled or replaced. Java 26 is the current feature release; Java 25 is used here as the stable teaching baseline.
go to previous page   go to home page   hear noise   go to next page

Do you think that the following is legal?

double rats = 8912D ;

Answer:

Yes. The 'D' will make the literal a double (even though it lacks a decimal point). However, to avoid confusion, always include a decimal point in a floating point literal, even where it is not required.

Scientific Notation

Either of the following also works:

double rats = 8912 ;

or

double rats = 8912.0 ;

The first statement (above) works, but is "sloppy" coding. The integer literal must be converted into a double before the variable is initialized. In the second statement the variable is initialized to the double literal.

You will sometimes see scientific notation. The following are all double-precision literals:

1.23E+02     -1.235E+02      -1.98234234E+05    3.81E-06

The big "E" means "times 10 to the power of" . The integer that follows it says what power of ten to multiply the rest of the number by.  

Another way of regarding the integer that follows the "E" is that it says in which direction and for how many places to shift the decimal point. Positive integers mean right shifts; negative integers mean left shifts.

QUESTION 10:

What is the following number if written out the usual way: 1.9345E+03