C++语言:输入一行字符,分别统计出其中的英文字母、空格、数字和其他字符的个数。
时间: 2023-11-07 21:57:22 浏览: 126
好的,这是一个计算问题,让我帮您解答。以下是 C 语言的代码:
```c
#include <stdio.h>
int main() {
char str[100];
int i, letters=0, space=0, digits=0, others=0;
printf("请输入一行字符:\n");
fgets(str, 100, stdin);
for(i=0; str[i]!='\0'; i++) {
if((str[i]>='a'&& str[i]<='z')||(str[i]>='A'&&str[i]<='Z')) {
letters++;
} else if(str[i]==' ') {
space++;
} else if(str[i]>='0'&&str[i]<='9') {
digits++;
} else {
others++;
}
}
printf("英文字母个数:%d\n", letters);
printf("空格个数:%d\n", space);
printf("数字个数:%d\n", digits);
printf("其他字符个数:%d\n", others);
return 0;
}
```
希望对您有帮助!
相关问题
用c++语言输入一行字符,分别统计其中英文字母、空格、数字和其他字符的个数。
在 C++ 中,你可以使用标准库中的 `std::ctype` 和 `std::string` 来统计一行字符中的各类字符。下面是一个简单的示例程序:
```cpp
#include <iostream>
#include <cctype>
#include <string>
int main() {
std::string input;
std::cout << "请输入一行字符: ";
std::getline(std::cin, input);
int alpha_count = 0; // 英文字母计数
int space_count = 0; // 空格计数
int digit_count = 0; // 数字计数
int other_count = 0; // 其他字符(非字母、数字、空格)计数
for (char c : input) {
if (isalpha(c)) { // 检查是否为字母(包括大写字母和小写字母)
if(islower(c))
alpha_count++;
else if(isupper(c))
alpha_count++;
} else if (isspace(c)) { // 检查是否为空格
space_count++;
} else if (isdigit(c)) { // 检查是否为数字
digit_count++;
} else { // 其他字符
other_count++;
}
}
std::cout << "英文字母个数: " << alpha_count << "\n";
std::cout << "空格个数: " << space_count << "\n";
std::cout << "数字个数: " << digit_count << "\n";
std::cout << "其他字符个数: " << other_count << "\n";
return 0;
}
```
运行此程序后,它会提示用户输入一行字符,并显示各个类别字符的数量。
使用c++编写:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
使用C语言编写输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数的程序:#include <stdio.h>
int main()
{
char str[100];
int letter = 0, space = 0, digit = 0, other = 0;
gets(str);
int i = 0;
while(str[i] != '\0')
{
if((str[i]>='a' && str[i]<='z') || (str[i]>='A' && str[i]<='Z'))
{
letter++;
}
else if(str[i] >= '0' && str[i] <= '9')
{
digit++;
}
else if(str[i] == ' ')
{
space++;
}
else
{
other++;
}
i++;
}
printf("字母个数:%d\n", letter);
printf("空格个数:%d\n", space);
printf("数字个数:%d\n", digit);
printf("其它字符个数:%d\n", other);
return 0;
}
阅读全文