-1
我是新來的C++編程,我無法存儲在文本文件中。它是一個非常簡單的程序。我之前使用相同的方法存儲了值,我得到的結果。無法使用fstream在文本文件中存儲值
#include<iostream>
#include<fstream>
using namespace std;
int main() {
ofstream fout("one.txt",ios::in);
int val1, rel1;
char val2[20], rel2[20];
cout<<" \n enter the integer value";
cin>>val1;
cout<<" \n enter the string value ";
cin>>val2;
fout.close();
ifstream fin("one.txt");
fin>>rel1;
fin>>rel2;
cout<<"the integer value .\n"<<rel1;
cout<<"the string value .\n"<<rel2;
fin.close();
if (fout==NULL) {
cout<<"the file is empty";
}
return 0;
}
輸入名 荒誕輸出 整數值是32760 字符串值是00Dv0
這是你的代碼看起來像在你的IDE /文本編輯器是什麼? –
除了關閉它之外,你實際上不會用'fout'做任何事情。 –
是@JosephMansfield完全相同 – user3383404