hdu 2017 字符串统计
Posted pcdl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 2017 字符串统计相关的知识,希望对你有一定的参考价值。
字符串统计
题目分析:
录入字符串,判断数字有多少个,累加保存。
代码:
#include<iostream> using namespace std; int main() { char a[100001]; int n; while (cin >> n&&n) { while (n--) { getchar(); scanf("%s", a); int i, num = 0; int len = strlen(a); for (i = 0; i < len ; i++) { if (a[i] >= ‘0‘&&a[i] <= ‘9‘) { num++; } } cout << num << endl; } } system("pause"); return 0; }
以上是关于hdu 2017 字符串统计的主要内容,如果未能解决你的问题,请参考以下文章