Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
152007 鸡哥 04四位数移位 C++ Compile Error 0 MS 0 KB 121 2026-04-19 14:30:46

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a,b; scan(%3d%1d,&a&b); cout<<b<<a; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:5:7: error: expected primary-expression before '%' token
  scan(%3d%1d,&a&b);
       ^
Main.cc:5:8: error: unable to find numeric literal operator 'operator""d'
  scan(%3d%1d,&a&b);
        ^
Main.cc:5:8: note: use -std=gnu++11 or -fext-numeric-literals to enable more built-in suffixes
Main.cc:5:11: error: unable to find numeric literal operator 'operator""d'
  scan(%3d%1d,&a&b);
           ^
Main.cc:5:11: note: use -std=gnu++11 or -fext-numeric-literals to enable more built-in suffixes
Main.cc:5:17: error: invalid operands of types 'int*' and 'int' to binary 'operator&'
  scan(%3d%1d,&a&b);
                 ^
Main.cc:5:18: error: 'scan' was not declared in this scope
  scan(%3d%1d,&a&b);
                  ^