# include "stdio.h"void main(){char ch;scanf("%c",&ch);if(ch>='A'&&ch<='Z')ch=ch+32; printf("%c\n",ch);}这样可以吗?