首页 > 问答 > 正文
/*统计输入字符数*/ #include <stdio.h> int main(void) { int nc = 0; while (getchar() != EOF) { nc++; } printf("%d\n", nc); return 0; }
如我想在终端输入 abc后终止输入,该如何操作?
大家讲道理2017-04-21 10:59:21
取决于你是在Win下还是Linux下。 Win下 CTRL+Z 再回车 Linux下 CTRL+D。