#include <stdio.h> int main() { char s[50];//这里换成char* s会报错,有没有大佬知道原因 while(~scanf("%s",s)) { if(*s>'Z') *s-=32; printf("%c",*s); } return 0; }