- 726 名前:デフォルトの名無しさん mailto:sage [2007/03/21(水) 18:42:48 ]
- 以下の構文をコーディングしたら、
#include <iostream> int main() { std::cout << "Hello" << std::end1 << "C++World!" << std::end1; std::cout << 100 << std::end1; std::cout << std::oct << 100 << std::end1; std::cout << std::dec << 100 << std::end1; std::cout << std::hex << 100 << std::end1; std::cout << 255 << std::end1; std::cout << std::dec << 255 << std::end1; return 0; } 下記のようなコンパイルが出てしまいました どう対処すれば宜しいでしょうか? おながいします。 エラー E2316 sample1002.cpp 6: 'end'は'std'のメンバーではない(関数main()) エラー E2316 sample1002.cpp 6: 'end'は'std'のメンバーではない(関数main()) エラー E2316 sample1002.cpp 7: 'end'は'std'のメンバーではない(関数main()) エラー E2316 sample1002.cpp 8: 'end'は'std'のメンバーではない(関数main()) エラー E2316 sample1002.cpp 9: 'end'は'std'のメンバーではない(関数main()) エラー E2316 sample1002.cpp 10: 'end'は'std'のメンバーではない(関数main()) エラー E2316 sample1002.cpp 11: 'end'は'std'のメンバーではない(関数main()) エラー E2316 sample1002.cpp 12: 'end'は'std'のメンバーではない(関数main())
|

|