📄 file_08.cpp
字号:
//file_08.cpp
#include <fstream.h>
#include <conio.h>
void main()
{ const MAX = 80;
char buffer[MAX];
ifstream infile("strdata.txt");
while (!infile.eof())
{ infile.getline(buffer,MAX);
cout << buffer << endl;
}
getch();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -