Магомед М Магомед Регистрация 12 Июл 2013 Сообщения 81 Репутация 0 Спасибо 0 Монет 0 19 Июн 2016 #1 public class gj { public static void main(String[] args) { double a = 4.32; float b = (float) a; boolean t = true; boolean t1 = false; if (a==b){ System.out.println(t); System.out.println(a + " " + b); } else { System.out.println(t1); } } }
public class gj { public static void main(String[] args) { double a = 4.32; float b = (float) a; boolean t = true; boolean t1 = false; if (a==b){ System.out.println(t); System.out.println(a + " " + b); } else { System.out.println(t1); } } }