/ public static void main(String[] args) { // TODO code application logic here String s1 = "4";String s2 = "4.0";if(Double.valueOf(s1).equals( Double.valueOf(s2)))System.out.printf("there are equel");else System.out.printf("there are not equel");} } ...