import java.util.*;
class One
{
static String city;
public static void main(String args[])
{
city=args[0];
Two t= new Two();
}
}
class Two extends One
{
if(city=="Banglore")
Two()
{
System.out.println("Hello BANGLORE");
}
}
P
Pruthivi_Dev
@Pruthivi_Dev
Posts
-
Java compile time Errors