运行以下程序,输出结果是()
int main(){ string s="MINYUN56"; int c=0; for(int i=0;i<s.size();i++) if(isdigit(s[i])) c++; cout<<c; return 0; }
0
1
2
3