Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
97284 | Kevin | 15几个数字组成 | C++ | Wrong Answer | 1 MS | 268 KB | 143 | 2024-11-12 15:06:39 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,s=0; cin>>n; while(n>0){ s++; n/=10; } cout<<s; return 0; }
------Input------
-965
------Answer-----
3
------Your output-----
0