ch19_2.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    ch19_2.cpp    **
  3. //**********************
  4. #include<fstream.h>
  5. void fn()
  6. {
  7.   ofstream myf("c:\bctemp\myname");    //ios::out|ios::trunc方式
  8.   myf <<"In each of the following questions, a related pairn"
  9.       <<"of words or phrases is followed by five lettered pairsn"       <<"of words or phrases.n";
  10. }
  11. void main()
  12. {
  13.   fn();
  14. }