Question: MeanOfThree.java: 9 : error: cannot find symbol double val 1 = scn . nextDouble ( ) ; ^ symbol: variable scn location: class MeanOfThree MeanOfThree.java:
MeanOfThree.java:: error: cannot find symbol
double val scnnextDouble;
symbol: variable scn
location: class MeanOfThree
MeanOfThree.java:: error: cannot find symbol
double val scnnextDouble;
symbol: variable scn
location: class MeanOfThree
MeanOfThree.java:: error: cannot find symbol
double val scnnextDouble;
symbol: variable scn
location: class MeanOfThree
errors
What exactly do I do in this circumstance? The mean of three numbers, num num and num is given by meanOfThree
Read
double variables num num and num from input, respectively. Then, compute meanOfThree using the formula. Finally, output
"Mean is followed by the value of meanOfThree to four digits after the decimal point. End with a newline.
Ex: If the input is then the output is:
Mean is
Note: printf can be used with f to output a double to digits after the decimal point.
User enters numbers and read input as val
system.out.printlnEnter first number:";
double val scnnextDouble;
System.out.printlnEnter second number:";
double val scnnextDouble;
System.out.printlnEnter third number:";
double val scnnextDouble;
Calculte the mean of the three numbers
double meanOfThree val val val;
Print the mean value formatted to four decimal places
System.out.printfMean is f
meanOfThree;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
