字母的小写比大写大32
#include <stdio.h> int main() { char ch; scanf("%c",&ch); printf("%c\n",ch+32); return 0; }