Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
14264 chibubao 求一个数的位数 C++ 通过 0 MS 240 KB 161 2023-04-12 13:05:38

Tests(1/1):


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


测评信息: