要输入多组数据,即n可以多次输入
#include #include using namespace std;int main( ){ char str[1000]; int n; cin>>n; getchar(); while(n--) { int x=0; gets(str); for(int m=0;m { if(str[m]>=48&&str[m]<=57) x=x+1; } cout< } return 0;}