以下是几句C语言编写的程序,但太明白,望各位不吝赐教~~

2024-11-27 12:48:03
推荐回答(1个)
回答1:

这是C++程序。
int i; // 声明整型变量 i
string setname,setsex,setpolitic,setaddress; // 声明4个 string 类型 的变量
ofstream outfile; // 声明 outfile 是 输出文件流class
outfile.open("f1.txt",ios::out); // 打开(或新建) 当前文件夹里的文件 f1.txt , 作 输出用
if (!outfile) // 如果打开失败,outfile 为NULL,!outfile 为真,将进入条件语句
cerr <<" open error"<< endl; // 向屏幕输出 字符串 “打开文件执行有错”
exit(1); // 退出程序
}
==========
写全一点, prog.cpp 内容:
#include
#include
using namespace std;

void main(){
int i;
string setname,setsex,setpolitic,setaddress;
ofstream outfile;
outfile.open("f1.txt",ios::out);
if (!outfile)
{
cerr <<" open error"<< endl;
exit(1);
}
outfile << "abcd" << endl; // 输出 4个字符
outfile.close();
exit(0);
}
打开失败,显示 open error
成功,则建立了文件 f1.txt, 内容有 abcd