第三节 练习1
程序员文章站
2024-03-22 22:04:40
...
#include<iostream>
#include<iomanip>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<cstring>
#include <typeinfo>
using namespace std;
int main()
{
int t = 0;
char s[10001]; //s -> 句子 ; ss-> 目标单词
cout << "输入:";
cin.getline(s,10001);
for(int i=0;i<= strlen(s)-1;i++){
if((int)s[i] >=48 && (int)s[i] <= 57) t++;
//字符问题 -> ASCII码问题
}
cout << t;
return 0;
}
//cout << "输入:";