+ 1
Can someone help me with this?
What is the output of this code? int result = 0; for (int i = 0; i < 5; i++) { if (i == 3) { result += 10; } else { result += i; } } System.out.println(result);
3 Answers
+ 6
18
+ 5
@james u r right its 17....đđđ



