本文主要是介绍c++百日训练第一天,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
问题:输入一个字符串,统计该字符串中字符个数、数字个数、空格个数以及其他类型字符个数。
/*输入一个字符串,统计该字符串中字符个数、数字个数、空格个数以及其他类型字符个数 */
#include <iostream>
#include <stdio.h>
#include <string>
using namespace std;
int main(int argc,char const *argv[])
{string str;cout<<"please input a string:";getline(cin,str);//从标准输入(通常是键盘)读取一行文本并存储到字符串 str 中int length=str.length();//字符串实际长度cout<<"the length of this string:";cout<<length<<endl;int alphabet=0;//字母个数int number=0;//数字个数int space=0;//空格个数int others=0;//其他字符个数for (int i=0;i<len;i++){if (str[i]>='a'&&str[i]<='z'||str[i]>='A'&&str[i]<='Z')alphabet++;else if(str[i]>='0'&&str[i]<='9')number++;else if (str[i]==' ')space++;elseothers++;}
cout<<"字母有:"<<alphabet<<endl;
cout<<"数字有:"<<number<<endl;
cout<<"空格有:"<<space<<endl;
cout<<"其他字符有:"<<others<<endl;
return 0;
}
这篇关于c++百日训练第一天的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!