📄 ch19_2.cpp
字号:
//**********************
//** ch19_2.cpp **
//**********************
#include<fstream.h>
void fn()
{
ofstream myf("c:\\bctemp\\myname"); //ios::out|ios::trunc方式
myf <<"In each of the following questions, a related pair\n"
<<"of words or phrases is followed by five lettered pairs\n"
<<"of words or phrases.\n";
}
void main()
{
fn();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -