CodeForces, 1A. Theatre Square
32bit 정수 값의 범위 32비트에 저장할 수 있는 정수 값의 범위 0 ~ 4,294,967,295 -2,147,483,648 ~ 2,147,483,647 double형 소수점 올림 double pi = 3.14159265359; System.out.println(String.format("%.0f", pi)); // 출력 : 3 System.out.println(String.format("%.1f", pi)); // 출력 : 3.1 System.out.println(String.format("%.2f", pi)); // 출력 : 3.14 System.out.println(String.format("%.3f", pi)); // 출력 : 3.142 1A. Theatre Square codeforces, ..