IO控制方式简介假设有这么一段代码:
#include <stdio.h>
int main(){
char i;
scanf("%c", &i);
printf("%c",i);
2024-01-08