If someone could help me out here I would really appreciate it...
I have to get this code running for my programming class and i keep getting same symbol error here is the code:
public class fourseventeen {
public void main(String[] args) {
int j = 0;
int sum = 0;
for (int i = 0; i < 10; i++)
sum += i;
if (i < j)
System.out.println(i);
else
System.out.println(j);
while (j < 10)
{
j++;
};
do {
j++;
} while (j < 10);
}
}