Question: What is the bug in the following code (Hint: It istechnically called an off-by-one error)? int n, sum = 0; for (n=1; n <10; n++)
What is the bug in the following code (Hint: It istechnically called an "off-by-one" error)?
int n, sum = 0;
for (n=1; n<10; n++)
sum = sum + n;
System.out.println("1 + 2 + ...+9 + 10 ==" + sum);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
