c++输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数。
时间: 2023-11-22 08:47:17 浏览: 286
输入一行字符,分别统计出其中的英文字母、空格、数字、和其他字符个数
以下是回答:
您可以使用C++中的字符数组和循环来实现输入一行字符并统计其中英文字母、空格、数字和其他字符的个数。具体步骤如下:
```c++
#include <iostream>
using namespace std;
int main() {
char str[100];
int letter = 0, space = 0, digit = 0, other = 0;
cout << "请输入一行字符:" << endl;
cin.getline(str, 100); // 输入一行字符
for (int i = 0; str[i] != '\0'; i++) { // 遍历字符数组
if ((str[i] >= 'a' && str[i] <= 'z') || (str[i] >= 'A' && str[i] <= 'Z')) {
letter++; // 统计英文字母个数
} else if (str[i] == ' ') {
space++; // 统计空格个数
} else if (str[i] >= '0' && str[i] <= '9') {
digit++; // 统计数字个数
} else {
other++; // 统计其他字符个数
}
}
cout << "英文字母个数:" << letter << endl;
cout << "空格个数:" << space << endl;
cout << "数字个数:" << digit << endl;
cout << "其他字符个数:" << other << endl;
return 0;
}
```
阅读全文