#include <bits/stdc++.h>
using namespace std;
int main() {
map<char,int> mp;
mp[‘a‘]++;
if (mp[‘b‘] == 0) printf("OK");
printf("%d\n",(int)mp.size());
return 0;
}
该程序输出结果为
OK2
以前都没有注意过
2024-01-11 23:09:58
#include <bits/stdc++.h>
using namespace std;
int main() {
map<char,int> mp;
mp[‘a‘]++;
if (mp[‘b‘] == 0) printf("OK");
printf("%d\n",(int)mp.size());
return 0;
}
该程序输出结果为
OK2
以前都没有注意过
下一篇:C#—接口和抽象类的区别?