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

蓝桥杯-错误的票据

时间:2015-04-03 23:47:40      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

#include <iostream>
#include <string>
#include <sstream>
#include <cstring>

using namespace std;

const int Max = 100010;
int a[Max];

int main()
{
    int n;
    int mini = 9999999;
    int maxi = 0; 
    cin >> n;
    cin.get();           //输入带空格的字符串之前要注意吸收多余换行符 
    string s;
    memset(a,0,sizeof(a));
    while(n--)
    {
              getline(cin,s);
              stringstream ss(s);
              int x;
              while(ss>>x)
               {
                            if(x < mini)
                               mini = x;
                            if(x > maxi)
                               maxi = x;
                            a[x] ++;
               } 
      }
      for(int i = mini; i <= maxi; i++)
         if(a[i] == 0)
             cout << i <<  ;
         else
         if(a[i] == 2)
              cout << i  << endl;
              system("pause");
      return 0; 
}         

 

蓝桥杯-错误的票据

标签:

原文地址:http://www.cnblogs.com/ekinzhang/p/4391199.html

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