『壹』 C语言怎么写程序输入A输出a
#include "stdio.h"main(){ char s; printf("请输入一个字母:"); scanf("%c",&s); if(s>='A'&&s<='Z') printf("%c",s+32);getch();}