>即時新聞-熱門

2008年8月15日星期五

VC++ - 寫入檔案

#include<iostream>
using namespace std;
void main()


FILE *file1;  
int i,j;
char ch1;
char myst[50],st2[50];
cout<<"請輸入";
cin>>myst;


file1=fopen("mydata.txt","w"); 

for(i=0;myst[i] != '¥0';i++)
putc(myst[i],file1);
cout << "存檔成功" << endl;
fclose(file1);
file1=fopen("mydata.txt","r"); 

cout << "檔案內容:";
i=0;
while ( (ch1=getc(file1)) != EOF)

st2[i]=ch1;
i++;

for(j=0;j<i;j++)
cout << st2[j] ;
cout << endl;

fclose(file1);

0 评论:

 
妹咕數位學園歡迎網友們來信指教 妹咕信箱