用C语言编写一个函数

输出给定的字符串中字母、数字、空格和其他字符的个数

(1)编写main函数

#include <stdio.h>

int main() {
    

    return 0;
}

(2)编写计数函数

#include <stdio.h>

void count_chars(char *str) {
    int letters = 0; // 字母计数器
    int digits = 0; // 数字计数器
    int spaces = 0; // 空格计数器
    int others = 0; // 其他字符计数器

    // 判断并计数
    for (int i = 0; str[i] != '\0'; ++i) {
        if ((str[i] >= 'A' && str[i] <= 'Z') || (str[i] >= 'a' && str[i] <= 'z')) {
            letters++;
        } else if (str[i] >= '0' && str[i] <= '9') {
            digits++;
        } else if (str[i] == ' ') {
            spaces++;
        } else {
            others++;
        }
    }

    // 输出各种字符的个数
    printf("Letters:%d\n", letters);
    printf("Digits:%d\n", digits);
    printf("Spaces:%d\n", spaces);
    printf("Others:%d\n", others);
}

int main() {


    return 0;
}

(3)编写main函数

#include <stdio.h>

void count_chars(char *str) {
    int letters = 0; // 字母计数器
    int digits = 0; // 数字计数器
    int spaces = 0; // 空格计数器
    int others = 0; // 其他字符计数器

    // 判断并计数
    for (int i = 0; str[i] != '\0'; ++i) {
        if ((str[i] >= 'A' && str[i] <= 'Z') || (str[i] >= 'a' && str[i] <= 'z')) {
            letters++;
        } else if (str[i] >= '0' && str[i] <= '9') {
            digits++;
        } else if (str[i] == ' ') {
            spaces++;
        } else {
            others++;
        }
    }

    // 输出各种字符的个数
    printf("Letters:%d\n", letters);
    printf("Digits:%d\n", digits);
    printf("Spaces:%d\n", spaces);
    printf("Others:%d\n", others);
}

int main() {
    char str[30];
    printf("Please enter the value of str: ");
    fgets(str, sizeof(str), stdin); // 使用 fgets 读取整行输入
    count_chars(str);

    return 0;
}
相关推荐
秋凉 づᐇ4 分钟前
2024-11-16 串的存储结构
数据结构
nevergiveup_20245 分钟前
ORB-SLAM2 ---- Tracking::Relocalization()
笔记·算法·计算机视觉
我爱工作&工作love我5 分钟前
1436:数列分段II -整型二分
c++·算法
丫头,冲鸭!!!16 分钟前
内部排序和外部排序以及常见算法和时间复杂度
数据结构·算法·排序算法
Dola_Pan17 分钟前
十大经典排序算法-希尔排序与归并排序
数据结构·算法·排序算法
chenxiemin20 分钟前
卡尔曼滤波:从理论到应用的简介
python·算法·filter·卡尔曼滤波·kalman
竹下为生1 小时前
LeetCode --- 143周赛
算法·leetcode·职场和发展
最后一个bug1 小时前
lua调用C语言函数,在函数中进行类型检查
linux·c语言·开发语言·lua
猫猫的小茶馆1 小时前
【网络编程】字节序:大端序和小端序
linux·c语言·驱动开发·计算机网络·嵌入式软件
Sunyanhui11 小时前
力扣 路径总和-112
算法·leetcode·职场和发展