#include<stdio.h>main(){char ch;ch=getchar();if(ch>='a'&&ch<='z')
{ch=ch-32;printf("%c",ch);}else{printf("%d",ch);}}
你想问什么呢
main前面加个void