class main
{
public static void main(String args[])
{
//Java compiler neglected sign of zero because zero doesn't have sign.
if(0==-0)
{
System.out.println("true");
}
}
}
{
public static void main(String args[])
{
//Java compiler neglected sign of zero because zero doesn't have sign.
if(0==-0)
{
System.out.println("true");
}
}
}
Comments
Post a Comment