初級 › error: 'cout' was not declared in this scope; did you mean 'std::cout'? の原因と直し方 › パターン3
error: 'cout' was not declared in this scope; did you mean 'std::cout'? の原因と直し方
#include <iostream> はしているのに、std::を付けずにcoutやendlをそのまま使ったときに出るエラーです。
1 #include <iostream> 2 int main() { 3 std::cout << "score: " << 90 ____________; ^ 4 return 0; 5 }
main.cpp:3:37: error: 'endl' was not declared in this scope; did you mean 'std::endl'?
空欄を埋めてコンパイル・実行を通す
coutにはstd::を付けていても、endlの方に付け忘れると同じ種類のエラーが個別に発生します。
次の問題