WA

Kangkewn Reply 5 years 4 weeks ago
어디가 잘 못 됐는지 잘 모르겠습니다@@@@@@@@@@@@@@@@@@@@@@@@@@@
withcs2 Reply 5 years 4 weeks ago
문제를 잘 읽어보세요 소수점 둘째자리까지만 출력, 예: 11.263의 경우 11.26로 출력하고 11.00의 경우 11.00로 출력, -11.256의 경우 -11.25로 출력
Kangkewn Reply 5 years 4 weeks ago
area 가 음수일 경우 따로 코딩을 해야하는 거죠?
withcs2 Reply 5 years 4 weeks ago
System.out.println((int)(0.5)); System.out.println((int)(-0.5)); System.out.println(Math.floor(0.5)); System.out.println(Math.floor(-0.5)); System.out.printf("%.1f\n",0.11); System.out.printf("%.1f\n",-0.11); System.out.printf("%.1f\n",0.99); System.out.printf("%.1f\n",-0.99); 위 여덟가지 코드를 실행해보시고 차이를 비교해보세요
Kangkewn Reply 5 years 4 weeks ago
맨 위에 두줄인건 알겠는데 100배해서 int형으로 바꾸고 그 수를 다시 100으로 나눠도 안 돼요ㅜ ㅜ
withcs2 Reply 5 years 4 weeks ago
System.out.println(11.00); 한 번 실행해보시길 바랍니다. 위에 두 개만 쓰면 안될거에요