Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
#include <iostream> using std::set; using std::cout; using std::endl;
報告されたエラー:
Josephus_Permutation.cpp:3:13: error: ‘std::set’ has not been declared
std::set名前空間のSTLであってはなりませんstdか?
std::set
std
これはstd名前空間にありますが、適切なヘッダーを含める必要があります。
#include <set>
ヘッダーには、とを含む標準の<iostream>入出力ライブラリのみが含まれstd::coutますstd::endl。std::setただし、はで定義されてい<set>ます。
<iostream>
std::cout
std::endl
<set>