#include <iostream> using std::set; using std::cout; using std::endl;
错误报告:
Josephus_Permutation.cpp:3:13:错误:’std :: set’尚未声明
std :: set不应该是命名空间std的STL吗?
#include <set>
< iostream> header只包含标准输入/输出库,其中包括std :: cout和std :: endl.但是,std :: set在< set>中定义.