使用条件表达式将大写字母转换为小写字母

#include <stdio.h>

int lower(int c);

int main(void){
    char s[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    int i = 0;
    while (s[i] != '/0') {
        printf("%c -> %c/n", s[i], lower(s[i]));
        i++;
    }
    return 0;
}

int lower(int c){
    return (c >= 'A' && c<= 'Z') ? c + 'a' - 'A' : c;
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266658.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论