Navigation Drawer DrawerLayout 安卓导航抽屉

时间:2014-04-01 16:45:31   收藏:0   阅读:529

原题链接


#include <stdio.h>

int main(){
	int n, t, x;
	while(scanf("%d", &n) == 1){
		x = 0;
		while(n--){
			scanf("%d", &t);
			x ^= t;
		}
		printf("%d\n", x);
	}
	return 0;
}


Navigation Drawer DrawerLayout 安卓导航抽屉,布布扣,bubuko.com

原文:http://blog.csdn.net/hkg1pek/article/details/22716831

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!