Ask your own question, for FREE!
Computer Science 11 Online
OpenStudy (anonymous):

I'm trying to get started in this Java program: 1. Define the double variables name test1, test2, test3 2. Assign values three test scores to test1, test2, test3 (for example 98, 95, 97) 3. Calculate the average or test1, test2 and test3 I started with: double test1 = "98" double test2 = "95"; double test3 = "97"; and the program already tells me something is wrong.

OpenStudy (konradzuse):

double test1 = "98" is missing ';'

OpenStudy (anonymous):

it's a double. i.e. numbers with decimals trailing. 98 should be 98, not "98" it should be like this: double test1 = 98;

OpenStudy (anonymous):

correct, the "" mean it is being defined as a string. but you want a double integer value. so you do not need the "".

OpenStudy (konradzuse):

:p you guys move fast :D.

OpenStudy (anonymous):

dw, but you are correct konrad, the first value is missing ;

OpenStudy (konradzuse):

I always like to go slow with them :P. Make them learn it. technically we should also say 98.0d is the standard. Only Double, Floats, and Longs really are classified... You can find it here! http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html

OpenStudy (konradzuse):

I personally don't use d though...

OpenStudy (anonymous):

Additional question: I got program without errors, but my average displays 96.6666666667. How can I make it only display 96.7? I know how to do it in C++, but not in Java.

OpenStudy (konradzuse):

decimalFormat or bigInteger

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!