p13.cpp
上传用户:chaiyuqiu
上传日期:2022-08-03
资源大小:27k
文件大小:0k
源码类别:

数据结构

开发平台:

C/C++

  1. #include <fstream.h>
  2. #include <stdlib.h>
  3. #include <process.h>
  4. void main() {
  5.     ofstream outFile ("my.out");
  6.     if (! outFile ) {
  7. cout << "Cannot open my.out" << endl; exit(1);
  8.     }
  9.     int n = 50; float f = 20.3;
  10.     outFile << "n:" << n << endl;
  11.     outFile << "f:"