欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

第三节 练习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 << "输入:";

结果:

第三节 练习1