C支持多种方式来接受用户输入。
getchar()返回下一个单字符输入的值。
例如:
#include <stdio.h> int main() { char a = getchar(); printf("你输入的时: %c", a); return 0; }
输入存储在变量a中。
0