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

杭电OJ 2017——字符串统计

程序员文章站 2022-05-13 17:04:53
...

#2017
统计字符串中数字的个数,这里记录只要是记录两个点,如何读取字符串,gets()函数,如何区分是否为数字isdigit()函数,以及读取完测试用例个数之后需要读取一个换行符getchar(),其他没什么好说的啦。
题目直达:http://acm.hdu.edu.cn/showproblem.php?pid=2017

AC代码:

#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstring>
using namespace std;
int main() {
	int n;
	cin>>n;
	getchar();
	while(n--){
		char s[1010];
		gets(s);
		int len=strlen(s);
		int sum=0;
		for(int i=0;i<len;i++){
			if(isdigit(s[i])){
				sum++;
			}
		}
		cout<<sum<<endl;
	}
	return 0;
}
相关标签: 杭电