map

 1 #include <stdio.h>
 2 #include <string.h>
 3 #include <string>
 4 #include <map>
 5 #include <algorithm>
 6 #include <iostream>
 7 using namespace std;
 8 
 9 map <int,int> a;
10 map <int,string> m;
11 
12 int main()
13 {
14     int n,i,j;
15     a.clear();
16     m.clear();
17     m[1]="233";
18     cout << m[1] <<endl;
19     scanf("%d",&n);
20     for(i=1;i<=n;i++)
21     {
22         int x;
23         scanf("%d",&x);
24         a[x]++;
25     }
26     printf("%d\n",a[10]);
27 }
View Code

 

posted @ 2015-08-30 18:38  cyd2014  阅读(101)  评论(0编辑  收藏  举报