#include <stdio.h> int main() { char ch; while (scanf("%s", &ch) != EOF) { // 注意 while 处理多个z值,注意这里回车也是字母 printf("%c\n",ch+32); } return 0; }