编程学习网为您整理以下代码实例,主要实现:使用条件表达式将大写字母转换为小写字母,希望可以帮到各位朋友。
#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;
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!