#include <stdio.h> main() { char c; printf("输入一个大写字母\n"); scanf("%c",&c); if(c>='A'&&c<='Z') c=c+32; printf("它的小写字母是%c\n",c); } 小写转大写.
確定! 回上一頁