After an unintended break, I'm back to learning Java.
I'm having a problem debugging the following file. I keep getting the message: "The following file is missing class or inner class files." I'm sure I'm missing something very simple. But what is it? I'm still working on fixing the rest of the file.
public class Oops2 {
public static void main(String[] args) {
int x;
x = 0;
System.out.println ("x is "),x;
int x;
x = 15; // set x to 15
System.out.println ("x is now "x);
int y; // set y to 1 more than x
y = x+1;
System.out.println ("x and y are "x + and + y);
}
}