码迷,mamicode.com
首页 > 其他好文 > 详细

hdu1029

时间:2017-01-13 22:39:09      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:namespace   space   scanf   i++   return   string   ++   stream   str   

#include<iostream>
#include<string.h>
using namespace std;


int main()
{
int n,i;
int t;
int cnt;
int result;
while(scanf("%d",&n)!=EOF)
{
cnt=0;
for(i=0;i<n;i++)
{
scanf("%d",&t);

if(cnt==0)
{
cnt=1;
result=t;
}
else
{
if(t==result)cnt++;
else cnt--;
}

}
printf("%d\n",result);
}
return 0;
}

hdu1029

标签:namespace   space   scanf   i++   return   string   ++   stream   str   

原文地址:http://www.cnblogs.com/wangkun1993/p/6284081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!