用C语言实现:输入一个字符串,统计其中数字字符的个数。(10分) 程序运行结果输出示例 请输入一个字符串: abc123def456gh 字符串中数字字符的个数为: 6
时间: 2024-05-10 18:14:59 浏览: 96
以下是用C语言实现的程序:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[100];
int count = 0;
printf("请输入一个字符串: ");
scanf("%s", str);
for (int i = 0; str[i] != '\0'; i++) {
if (isdigit(str[i])) {
count++;
}
}
printf("字符串中数字字符的个数为: %d\n", count);
return 0;
}
```
程序运行结果输出示例:
```
请输入一个字符串: abc123def456gh
字符串中数字字符的个数为: 6
```
相关问题
用c语言输出:输入一行字符,分别统计出其中英文字母、数字、空格和其它字符的个数。
在C语言中,你可以通过使用`ctype.h`库中的函数来识别并统计输入字符串中各字符类型的数量。下面是一个简单的程序示例:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char input[100];
int alpha_count = 0; // 字母计数
int digit_count = 0; // 数字计数
int space_count = 0; // 空格计数
int other_count = 0; // 其他字符计数
printf("请输入一行字符:");
fgets(input, sizeof(input), stdin); // 读取一行输入
for (int i = 0; input[i] != '\0'; i++) { // 遍历字符串
if (isalpha(input[i])) { // 判断是否为字母
alpha_count++;
} else if (isdigit(input[i])) { // 判断是否为数字
digit_count++;
} else if (isspace(input[i])) { // 判断是否为空格
space_count++;
} else { // 其他字符(包括特殊字符)
other_count++;
}
}
printf("英文字母数量:%d\n", alpha_count);
printf("数字数量:%d\n", digit_count);
printf("空格数量:%d\n", space_count);
printf("其他字符数量:%d\n", other_count);
return 0;
}
```
在这个程序中,我们使用了`isalpha()`、`isdigit()` 和 `isspace()` 函数来判断字符类型,然后累加到对应的计数器中。
c语言程序:输入一串字符(以回车键结束),统计其中数字、大写字母、小写字母以及其他字符的个数。
下面是一个示例的C语言程序,可以实现你的要求:
```c
#include <stdio.h>
int main() {
char input;
int digits = 0, uppercase = 0, lowercase = 0, others = 0;
printf("请输入一串字符(以回车键结束):\n");
while ((input = getchar()) != '\n') {
if (input >= '0' && input <= '9') {
digits++;
} else if (input >= 'A' && input <= 'Z') {
uppercase++;
} else if (input >= 'a' && input <= 'z') {
lowercase++;
} else {
others++;
}
}
printf("数字个数:%d\n", digits);
printf("大写字母个数:%d\n", uppercase);
printf("小写字母个数:%d\n", lowercase);
printf("其他字符个数:%d\n", others);
return 0;
}
```
你可以将以上代码保存为一个`.c`文件,然后使用C语言编译器进行编译和运行。运行程序后,输入你想要统计的字符串,程序将会输出数字、大写字母、小写字母以及其他字符的个数。
阅读全文