Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
7777 刘逸杭 15几个数字组成 C++ Accepted 0 MS 268 KB 169 2025-05-18 09:14:29

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int n,a=0; cin>>n; while(n!=0){ a++; n/=10; } cout<<a; return 0; }