- 威望
- 0
- 貢獻
- 218
- 參與
- 23
- GJ
- 175
- 註冊時間
- 2006-1-1
|
關於C的fstream
小弟最近在寫作業上到用程式語言去開啟txt
但是卻開不起來...也搞不清楚哪邊有打錯所以來請各位大大幫忙看一下..
以下是完成到一半的程式碼:
#include<iostream>
#include<fstream>
using namespace std;
const int xx = 100;
void xo(int soce[],int& cood);
int main()
{
char ans;
int soce[xx],cood;
do
{
cout << "歡迎使用統計軟體"<<endl;
xo( soce, cood);
cout << "重複查詢?:";
cin >> ans;
}
while(ans =='y'|| ans == 'Y');
return 0;
}
void xo(int soce[],int& cood)
{
int i=0;
char name[32],name1[32] ;
double sum = 0;
ifstream in;
ofstream out;
cout <<"請輸入欲統計的成績檔案名稱(1-31字元):";
cin >> name;
in.open(name);
cout <<"請輸入欲儲存檔案名稱(1-31字元):";
cin >> name1;
out.open(name1);
while(in >> soce[i]&& i< xx)
i++;
cood = i;
cout << cood <<" ";
sum += cood;
cood++;
in.close();
out.close();
} |
|