本文主要是介绍hdu_2095 find your present (2),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=2095
分析:
可以戳进去,看这里的分析。
我的代码:
#include<stdio.h>
int main()
{int n;while(~scanf("%d",&n),n){int ans=0;for(int i=0;i<n;i++){int a;scanf("%d",&a);ans^=a;}printf("%d\n",ans);}return 0;
}
总结;在bnu中做了个相似的题后,又把这个题挖坟挖了出来。。
这篇关于hdu_2095 find your present (2)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!