Submission #4012351


Source Code Expand

#include <iostream>

int main()
{
  cout << 2632 << endl;
  return(0);
}

Submission Info

Submission Time
Task A - 天下一プログラマーゲーム
User smon
Language C++14 (GCC 5.4.1)
Score 0
Code Size 78 Byte
Status CE

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:5:3: error: ‘cout’ was not declared in this scope
   cout << 2632 << endl;
   ^
./Main.cpp:5:3: note: suggested alternative:
In file included from ./Main.cpp:1:0:
/usr/include/c++/5/iostream:61:18: note:   ‘std::cout’
   extern ostream cout;  /// Linked to standard output
                  ^
./Main.cpp:5:19: error: ‘endl’ was not declared in this scope
   cout << 2632 << endl;
                   ^
./Main.cpp:5:19: note: suggested alternative:
In file included from /usr/include/c++/5/iostream:39:0,
                 from ./Main.cpp:1:
/usr/include/c++/5/ostream:590:5: note:   ‘std::endl’
     endl(basic_ostream<_CharT, _Traits>& __os)
     ^