标签:
一.问题及代码
/* * 文件名称:字符串.cpp * 作 者: 荆蕾 * 完成日期:2016 年 5 月5 日 * 版 本 号:v1.0 * 输入描述:输入一组字符串 * 问题描述:输入一组字符串,统计输出字符串中(大/小写)字母个数,数字个数及其它字符个数 * 程序输出:统计输出字符串中(大/小写)字母个数,数字个数及其它字符个数 */ #include<iostream> #include<cstdio> using namespace std; int main() { char str[100]; int i=0,A=0,a=0,n=0,c=0; cout<<"输入字符串:"; gets(str); while(str[i]!='\0') { if(str[i]>='0'&&str[i]<='9') n++; else if(str[i]>='A'&&str[i]<='Z') A++; else if(str[i]>='a'&&str[i]<='z') a++; else c++; i++; } cout<<"其中的大写字母个数: "<<A<<endl; cout<<"其中的小写字母个数: "<<a<<endl; cout<<"其中的数字个数: "<<n<<endl; cout<<"其中的其它字符个数: "<<c<<endl; return 0; }
二.运行结果
三。心得体会
熟悉了数组的应用
四。知识点总结
利用循环语句可对数组内的数据进行分类计数
标签:
原文地址:http://blog.csdn.net/jinglei_i/article/details/51321593