Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
97894 | 吴梓玄 | 04四位数移位 | C | Compile Error | 0 MS | 0 KB | 173 | 2024-11-16 17:31:28 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; scanf("%d",&a); b=a%10; cout<<b; a/=10; cout<<a; return 0; }
Main.c:1:25: fatal error: bits/stdc++.h: No such file or directory #include ^ compilation terminated.