when I try to compile this java file this error appears
This is my code:Code:Error message:
Exception in thread "main" java.lang.NoClassesDefFoundError: City/java
Code:
public class City
{
public static void main ( String args[] )
{
String city= "Connecticut"
System.out.println("city");
}
}
