Submission #7097742


Source Code Expand

#include<iostream>
using namespace std;
int main(){
    int n;cin << n;
    if(n!=12){
        cout << n+1 << endl;
    }
    else{
        cout << 1 << endl;
    }
    return 0;
}

Submission Info

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

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:4:15: error: no match for ‘operator<<’ (operand types are ‘std::istream {aka std::basic_istream<char>}’ and ‘int’)
     int n;cin << n;
               ^
./Main.cpp:4:15: note: candidate: operator<<(int, int) <built-in>
./Main.cpp:4:15: note:   no known conversion for argument 1 from ‘std::istream {aka std::basic_istream<char>}’ to ‘int’
In file included from /usr/include/c++/5/string:52:0,
                 from /usr/include/c++/5/bits/locale_classes.h:40,
                 from /usr/include/c++/5/bits/ios_base.h:41,
                 from /usr/include/c++/5/ios:42,
                 from /usr/include/c++/5/ostream:38,
                 from /usr/include/c++/5/iostream:39,
                 from ./Main.cpp:1:
/usr/include/c++/5/bits/basic_string.h:5257:5: note: candidate: template<class _CharT, class _Traits, class _Alloc> std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const std::basic_string<_CharT, _Traits, _Alloc>&)
   ...