taken from:
http://www.jdiscuss.com int x = Integer.parseInt(args[0]);
switch(x)
{
case x < 5 : System.out.println("BIG"); break;
case x > 5 : System.out.println("SMALL");
default : System.out.println("CORRECT"); break;
}
this is giving compilation error. but as i know parseInt will convert
String into primitive, so it should atlaest compile