#include <stdio.h> void main() { char chl,ch2; printf("请输入一个大写字母:"); scanf("%c",&chl); ch2=chl+32; printf("对应的小写字母为:%c",ch2); }