Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
106651 | 华雅萱 | 15几个数字组成 | C++ | Wrong Answer | 0 MS | 272 KB | 170 | 2025-01-16 14:36:33 |
#include<iostream> using namespace std; int main(){ int n,a=0; cin>>n; while(n>0){ n=n/10; a++; } cout<<a; return 0; }
------Input------
-965
------Answer-----
3
------Your output-----
0