房天下
>
房天下问答
>
业主生活
>
其他0$房天下问答|c++程序设计 P Number Extended Reloaded$https://m.fang.com/ask/ask_1799831.html$https://static.soufunimg.com/common_m/m_public/201511/images/asksharedefault.pngpackc/pages/ask/detail/detail?askid=1799831
c++程序设计 P Number Extended Reloaded
Description:Given a sequence b1, b2, b3… bn of even length, the occurrence of every bi (i=1, 2, 3…n) is an even number except two numbers, the P numbers, which occur odd times. Your task is to find those two P numbers.Input:The input file contains several test case, each test case starts with a line contains an even number n (0<n<10 000), the length of the sequence, followed by a line with n numbers b1, b2, b3…bn. It is guaranteed that every bi (i=1, 2, 3..,n) can be represented by a signed integer. The input is terminated by a test case with n = 0. It should not be processed. Output:For each test case, output a line the P numbers of the corresponding sequence in ascending order with a space character between the two numbers. Sample Input:62 3 2 3 4 582 2 2 2 2 2 2 90Sample Output:4 52 9