Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113786 毛靖平 15几个数字组成 C++ Compile Error 0 MS 0 KB 207 2025-03-16 14:54:27

Tests(0/0):


Code:

#include<iostream> // cin\cout\endl using namespace std; int main(){ long long a; int b=0; cin>>a; while(a>0){ a=a/10; b++; } cout<<b<<en; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:11:14: error: 'en' was not declared in this scope
     cout<