第十三周项目5字符串操作(1)

来源:互联网 发布:dnf辅助网站源码 编辑:程序博客网 时间:2024/06/05 07:27
/**Copyright (c) 2014, 烟台大学计算机学院*All rights reserved.*文件名称:test.cpp*作者:于凯*完成日期:2014年 11 月 24日*版本号:v1.0**问题描述:*/#include <iostream>#include <cstdio>using namespace std;int main(){    char str[50];    int i=0,n=0;    cout<<"输入字符串:";    gets(str);    while(str[i]!='\0')    {        if(str[i]>='0'&&str[i]<='9')            n++;        i++;    }    cout<<"其中的数字个数是:"<<n<<endl;    return 0;}


运行结果:

0 0
原创粉丝点击