c_cpp 基本设定
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 基本设定相关的知识,希望对你有一定的参考价值。
#include <iostream>
#include <set>
using namespace std;
int main() {
set<int> set1;
set1.insert(1);
set1.insert(2);
set1.insert(3);
set1.insert(1);
cout << set1.count(1) << endl; // 1
cout << set1.count(2) << endl; // 1
cout << set1.count(3) << endl; // 1
cout << set1.count(4) << endl; // 0
for (auto it : set1) {
cout << it << " ";
}
cout << endl;
// 1 2 3
return 0;
}
以上是关于c_cpp 基本设定的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp 获取和设定串口状态
c_cpp Rcpp从头开始独特设定(ish)
c_cpp 【18】基本鼠标操作
c_cpp RodCutting - 基本
c_cpp 基本C ++模板
c_cpp 基本C ++模板