程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c++-這個程序問題出在哪啊?麻煩各路大神指教

c++-這個程序問題出在哪啊?麻煩各路大神指教

編輯:編程綜合問答
這個程序問題出在哪啊?麻煩各路大神指教

程序如下:
#include
using namespace std;
class CFraction
{
private:
int nume;
int deno;
public:
CFraction(int nu=0,int de=1):nume(nu),deno(de) {}
void set(int nu=0,int de=1) {nume=nu;deno=de;}
void input()
{
char c;
cout<<"請輸入數據(格式:nu/de):"< while(1)
{
cin>>nume>>c>>deno;
if(c!='/')
cout<<"格式錯誤!請重新輸入數據:"< else
break;
}
void simplify()
{
int r, n,d;
cout cin>>n>>d;
while(r!=0)
{
r=d%n;
d=n;
n=r;
}
}
void amlify(int n)
{
int c;
c=input;
c*=n;
}
void output(int style=0)
{
cout<<nume<<"/"<<deno<<endl;
}
};
int main()
{
CFraction a(3,7),b(6,8),c(1,7);
a.output();
a.set(2,5);
a.output();
a.input();
b.simplify();
b.output();
c.amplify(5);
c.output();
return 0;
}
編譯時顯示:
--------------------Configuration: f - Win32 Debug--------------------
Compiling...
f.cpp
D:\C++項目\f\f.cpp(59) : fatal error C1004: unexpected end of file found
執行 cl.exe 時出錯.

f.obj - 1 error(s), 0 warning(s)

最佳回答:


這通常是頭文件重復引用出的錯誤。
又:請用代碼格式貼。

summer_WXX
summer_WXX
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved