摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2095和google入围赛的一道题一摸一样啊!View Code #include<iostream>using namespace std;int sum ,a;int n , i;int main(){ while(scanf("%d" , &n)!=EOF, n) { sum=0; for(i=0;i<n;i++) { scanf("%d",&a); sum=sum^a; } printf("%d\n",sum 阅读全文
posted @ 2011-06-06 14:21 聊聊IT那些事 阅读(429) 评论(0) 推荐(0)