๐ Bug HuntJV Java Easy+10 XP
Missing Semicolon
This code won't compile. Find the fix.
๐ Find the bug
1
int sum = 0;2
for (int i = 0; i < 10; i++) {3
sum += i4
}5
System.out.println(sum);๐ The bug is on line 3