satellite03
IS-IT--Management
whats wrong with this code ?
why its not compiling ?
Code:
public class test
{
Float F1 = new Float(0.9F);
Float F2 = new Float(0.9F);
Double D1 = new Double (0.9);
public static void main(String args[])
{
System.out.println(F1.equals(F2));
}
}
why its not compiling ?