编辑代码

#include <stdio.h>
int main () {
char a='A',b='B',c='C';
a=a+32;
b=b+32;
c=c+32;
printf("小写字母依次是%c%c%c\n",a,b,c);
	return 0;
}