C++中创建文件,并输入数据保存到数据中,然后读出显示文件数据?

2024-11-20 18:23:11
推荐回答(2个)
回答1:

#include
#include
using namespace std;
int main()
{
int a,aa;
double b,bb;
char c,cc;
char s[1000],ss[1000];
while(1)
{
cout<<"输入两个数字,一个字符,一个字符串"< cin>>a>>b>>c>>s;
fstream fop("temp.txt",ios::out);
fop< fop.close();
printf("写入文件完毕\n\n");
printf("以下数据为从文件中读 :\n");
fstream fip("temp.txt",ios::in);
fip>>aa>>bb>>cc>>ss;
cout< fip.close();
}
return 0;
}

回答2:

要写代码?????????