把字符串中所有的大写字母
转换为小写字母
#include<stdio.h>
#include<string.h>
char s[1020];
int main() {
while(gets(s)!=NULL) {
int l=strlen(s);
for(int i=0; i<l; i++) {
if(s[i]<='Z'&&s[i]>='A') {
printf("%c",s[i]-('A'-'a'));
} else
printf("%c",s[i]);
}
printf("\n");
}
return 0;
}