读写文件

 #include
#include
#include
using namespace std;
void main(int argc,char** argv)
{
 
 fstream f("d:\\try.txt",ios::out);
 f<<1234<<' '<<3.14<<'A'<<"How are you";//写入数据
 f.close();
 f.open("d:\\try.txt",ios::in);
 int i;
 double d;
 char c;
 char s[20];
 f>>i>>d>>c;
 f.getline(s,20);
 cout<  cout<  cout<  f.close();
 
}

你可能感兴趣的:(C++)