题目描述
输入一行字符,以回车符作为输入结束的标志。统计其中英文字母、数字字符和其他字符的个数。
输入描述
多个字符,以回车符结束,回车符不作为有效字符。有效字符个数不超过100。
输出描述
输出分3行,格式见输出样例。
输入样例
Abse 4+5*3=?
输出样例
letter:4
digit:3
other:5
#include <iostream>
#include <cctype> // 输入一行字符,以回车符作为输入结束的标志。统计其中数字字符的个数。
using namespace std;
//输入描述
//多个字符,以回车符结束,回车符不作为有效字符。
//
//输出描述
//输出一个整数,表示数字字符的个数。
int main() {
char ch;
int numdigit=0;
int numletter = 0;
int numElse = 0;
cin.get(ch);
while (ch != '\n') {
if (isdigit(ch)) {
numdigit++;
}
else if (isalpha(ch)) {
numletter++;
}
else {
numElse++;
}
cin.get(ch);
}
cout <<"letter:"<<numletter << endl;
cout <<"digit:"<<numdigit << endl;
cout <<"other:"<<numElse << endl;
return 0;
}
ctype.h简介
ctype头文件简介