Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
111491 | 谢佳辰 | 15几个数字组成 | C++ | Compile Error | 0 MS | 0 KB | 182 | 2025-03-02 14:13:05 |
#include <bits./stdc++.h> using namespace std; int main(){ int a,count=0; cin>>a; while(a!=0){ a=a/10; count++; } cout<<count<<endl; }
Main.cc:1:26: fatal error: bits./stdc++.h: No such file or directory #include ^ compilation terminated.