运行 ❯
获得你
自己的
网站
×
更改朝向
更改主题,暗/亮
前往 Spaces
#include <iostream> #include <set> using namespace std; int main() { set<string> cars; cout << cars.empty(); // Outputs 1 (The set is empty) return 0; }
1