Run ID:146463
提交时间:2026-01-28 14:35:47
#include<bits/stdc++.h> using namespace std; int main(){ char c[101]; int q=0; cin>>c; for(int i=0;c[i]!='\0';i++){ if(c[i]>='0' && c[i]<='9'){ q++; } } cout<<q; return 0; }