Error: Could not find or load main class ScopeApp [message #1690726] |
Mon, 30 March 2015 16:26  |
Eclipse User |
|
|
|
I have just recently typed the code below, and it keeps giving me the the error message: Error: Could not find or load main class ScopeApp. I have looked all over the internet for the internet for the solution but I can't find it. So can someone please help me.
Code:
public class ScopeApp
{
static int x;
public static void main(String[] args)
{
x = 5;
System.out.println("main: x = " + x);
myMethod();
}
public static void myMethod()
{
int y;
y = 10;
if (y == x + 5)
{
int z;
z = 15;
System.out.println("myMethod: z = " + z);
}
System.out.println("myMethod: x = " + x);
System.out.println("myMethod: y = " + y);
}
}
|
|
|
|
|
|
|
|
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.09420 seconds