Question: Why does the following loop not work as intended? How would you fix it? for(double i = 1.0/9.0; i != 9.0; i += 1.0/9.0){ System.out.println(i);
Why does the following loop not work as intended? How would you fix it?
for(double i = 1.0/9.0; i != 9.0; i += 1.0/9.0){
System.out.println(i);
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
