int a = 3; int b = 4; System.out.println( a / b ); // 0です! System.out.println( (double)a / (double)b ); // 0.75です!
無所属ソフトウェアエンジニア