Question: Explain solution and what is happening here in this problem? What is the output for y? int y = 0; for (int i = 0;
Explain solution and what is happening here in this problem?
What is the output for y?
int y = 0;
for (int i = 0; i < 10; ++i) {
y += i;
}
System.out.println(y);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
