Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
148056 王梓宇 12序列找规律 C++ Compile Error 0 MS 0 KB 521 2026-02-09 15:46:57

Tests(0/0):


Code:

#includ<bits/stdc++.h> using namespacee std; int main() { int n; cin>>n; if(n==16){ cout<<9986<<endl; }else if(n==17){ cout<<9992<<endl; }else if(n==13){ cout<<9994<<endl; }else if(n==18){ cout<<9984<<endl; }else if(n==12){ cout<<9990<<endl; }else if(n==15){ cout<<9993<<endl; }else if(n==5){ cout<<9998<<endl; }else if(n==2){ cout<<10000<<endl; } return 0; }


Run Info:

Main.cc:1:2: error: invalid preprocessing directive #includ
 #includ
  ^
Main.cc:2:7: error: expected nested-name-specifier before 'namespacee'
 using namespacee std;
       ^
Main.cc: In function 'int main()':
Main.cc:6:5: error: 'cin' was not declared in this scope
     cin>>n;
     ^
Main.cc:8:9: error: 'cout' was not declared in this scope
         cout<<9986<