C++中创建文件,并输入数据保存到数据中,然后读出显示文件数据?
2个回答
展开全部
#include <fstream>
#include <iostream>
using namespace std;
int main()
{
int a,aa;
double b,bb;
char c,cc;
char s[1000],ss[1000];
while(1)
{
cout<<"输入两个数字,一个字符,一个字符串"<<endl;
cin>>a>>b>>c>>s;
fstream fop("temp.txt",ios::out);
fop<<a<<" "<<b<<" "<<c<<" "<<s<<" "<<endl;
fop.close();
printf("写入文件完毕\n\n");
printf("以下数据为从文件中读 :\n");
fstream fip("temp.txt",ios::in);
fip>>aa>>bb>>cc>>ss;
cout<<aa<<endl<<bb<<endl<<cc<<endl<<ss<<endl;
fip.close();
}
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int a,aa;
double b,bb;
char c,cc;
char s[1000],ss[1000];
while(1)
{
cout<<"输入两个数字,一个字符,一个字符串"<<endl;
cin>>a>>b>>c>>s;
fstream fop("temp.txt",ios::out);
fop<<a<<" "<<b<<" "<<c<<" "<<s<<" "<<endl;
fop.close();
printf("写入文件完毕\n\n");
printf("以下数据为从文件中读 :\n");
fstream fip("temp.txt",ios::in);
fip>>aa>>bb>>cc>>ss;
cout<<aa<<endl<<bb<<endl<<cc<<endl<<ss<<endl;
fip.close();
}
return 0;
}
追问
我的也是这样的,但为什么不能输出显示呢?
追答
你的代码给我看看。
TableDI
2024-07-18 广告
2024-07-18 广告
在上海悉息信息科技有限公司,我们深知Excel在数据处理中的重要作用。在Excel中引用不同工作表(sheet)的数据是常见的操作,这有助于整合和分析跨多个工作表的信息。通过在工作表名称前加上感叹号“!”,您可以轻松地引用其他工作表中的数据...
点击进入详情页
本回答由TableDI提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询