Run ID:146470

提交时间:2026-01-28 14:38:00

#include<bits/stdc++.h> using namespace std; int main(){ char c[290]; int q=0; cin.getline(c,290); for(int i=0;c[i]!='\0';i++){ if(c[i]>='0' && c[i]<='9'){ q++; } } cout<<q; return 0; }