- 威望
- 0
- 貢獻
- 170
- 參與
- 72
- GJ
- 613
- 註冊時間
- 2010-4-1
|
14#
發表於 2013-1-5 15:50
| 只看該作者
[i=s] 本帖最後由 尤佳理 於 2013-1-5 15:57 編輯 [/i]
你的值是存在soce裡面
稍微改了一下
其實cood沒有用道說
#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)
{
sum += soce[i];
i++;
}
cout << sum << endl;
in.close();
out.close();
}
-------
恩...這個沒有把值寫到TXT檔裡面
函數忘了舞需要找一下...
剛剛才看到後面變斜體... |
-
1
評分人數
-
-
過客:
cood也會用到只是現在的麻煩是文字出不來.. ...GJ + 1
|