『壹』 C語言怎麼寫程序輸入A輸出a
#include "stdio.h"main(){ char s; printf("請輸入一個字母:"); scanf("%c",&s); if(s>='A'&&s<='Z') printf("%c",s+32);getch();}