3条回答 默认 最新
- CSDN专家-link 2021-11-14 15:54关注
#include <stdio.h> int main() { char c; printf("Press a key and then press Enter:"); scanf("%c",&c); printf("%c\n",c+32); return 0; }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 3无用 7
#include <stdio.h>
int main()
{
char c;
printf("Press a key and then press Enter:");
scanf("%c",&c);
printf("%c\n",c+32);
return 0;
}