Submission #1152903


Source Code Expand

#include<cstdio>
#include <iostream>

int main(void)
{
	int n;
	cin >> n;
	cout << (n+1) % 12 << endl;
	return 0;
}

Submission Info

Submission Time
Task A - 来月は何月?
User jj
Language C++14 (GCC 5.4.1)
Score 0
Code Size 124 Byte
Status CE

Compile Error

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