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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!