Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
131206 颜学俊逸 统计数字字符个数 C++ Compile Error 0 MS 0 KB 243 2025-09-21 14:31:27

Tests(0/0):


Code:

#include<iostream> using namespace std; int main (){ char a[255]; cin.getline(a,255); int b = 0; for(int i = 0;i < 255;i++){ if(a[i] == '\0'){ break; }else if('9' >= a[i] && a[i] >= '0'){ b++; } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:17:1: error: expected '}' at end of input
 }
 ^