编写一个函数,统计一个字符串中 0~9 出现的次数。函数原型如下:
void count( string &s, int counts[ ], int size ) ;
其中,s 为字符串,数组元素 counts 表示 0~9 出现的次数,size 为 counts 数组大小
编写函数求字符串中0~9出现次数
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
2条回答 默认 最新
- hust_jixing 2019-12-13 10:48关注
#include <iostream> using namespace std; void count( string &s, int counts[ ], int size ) { int value; for (int i = 0; i < s.length(); i++) { value = s[i] - '0'; if (value >= 0 && value <= 9 && value < size) { counts[value]++; } } return ; } int main() { #define C_SIZE 3 string s = "1231456adb"; int c[C_SIZE] = {0}; count(s, c, C_SIZE); for(int i = 0; i < C_SIZE; i++) { cout << c[i] << endl; } return 0; }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决评论 打赏 举报无用 2
悬赏问题
- ¥15 设计一个温度闭环控制系统
- ¥100 关于加载卡的问题有能知道这个要怎么处理吗?
- ¥100 rtmpose姿态评估
- ¥15 java 通过反射找路径下的类,打包后就找不到
- ¥15 通联支付网上收银统一下单接口
- ¥15 angular有偿编写,
- ¥15 centos7系统下abinit安装时make出错
- ¥15 hbuildex运行微信小程序报错
- ¥15 关于#python#的问题:我知道这个问题对你们来说肯定so easy
- ¥15 wpf datagrid如何实现多层表头