将输入的一个小写字节符转换为大写形式输出;运行样例:输入a;输出A
#include<stdio.h>
int main(){char c;scanf("%c",&c);
printf("%c\n",c-32); return 0;
}