io20_3.02.c
来自「C++ Primer(第三版)的随书源代码」· C语言 代码 · 共 22 行
C
22 行
// #include <iostream>
#include <iostream.h>
/**
** a.out
** ineluctable modality of the visible
** ineluctable modality of the visible
**
**/
int main()
{
int ch;
// alternatively: while ( ch = cin.get() && ch != EOF )
while (( ch = cin.get()) != EOF )
cout.put( ch );
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?