pe가 뜹니다

marong142 Reply 8 years 27 weeks ago
import java.util.Scanner; public class Main{ public static void main(String agrs[]){ Scanner sc = new Scanner(System.in); int i, j, k; int N = sc.nextInt(); for (i=0; i<N; i++){ int A = sc.nextInt(); int B = sc.nextInt(); int large = (A+B)/2; int small = (A-B)/2; if (large<0 || small<0 || (A+B)%2 != 0 || (A-B)%2 != 0) System.out.println("impossible\n"); else System.out.printf("%d %d\n", large, small); } } } 왜 pe가 뜨는거죠?
withcs2 Reply 8 years 27 weeks ago
println에 ln이 있는데 \n을 써서 그럴지도 모릅니다.