程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c++-編譯時出現這樣的錯誤,求大神指點解決方法

c++-編譯時出現這樣的錯誤,求大神指點解決方法

編輯:編程綜合問答
編譯時出現這樣的錯誤,求大神指點解決方法

程序如下:
#include
using namespace std;
class zrf_Ratio;
zrf_Ratio operator+(const zrf_Ratio& r1, const zrf_Ratio& r2);
zrf_Ratio operator-(const zrf_Ratio&, const zrf_Ratio&);
zrf_Ratio operator*(const zrf_Ratio&, const zrf_Ratio&);
zrf_Ratio operator/(const zrf_Ratio&, const zrf_Ratio&);

class zrf_Ratio
{
public:
zrf_Ratio(){}
zrf_Ratio(int r1,int r2):num(r1),den(r2){}
zrf_Ratio f1(zrf_Ratio& z)
{
int r,m=z.num,n=z.den;
while(r=z.num%z.den)
{
z.num=z.den;
z.den=r;
}
r=z.den;
z.num=m/r;
z.den=n/r;
return z;
}
friend ostream& operator<<(ostream& ostr, const zrf_Ratio& r)
{ return ostr << r.num << "/" << r.den;}

zrf_Ratio operator-(const zrf_Ratio& r1)
{return f1(zrf_Ratio(num*r1.den-r1.num*den,den*r1.den));}

friend zrf_Ratio operator+(const zrf_Ratio& r1, const zrf_Ratio& r2)
{
    zrf_Ratio a;
    return a.f1(zrf_Ratio(r1.num*r2.den+r2.num*r1.den,r1.den*r2.den));
}

friend zrf_Ratio operator-(const zrf_Ratio& r1, const zrf_Ratio& r2)
{
    zrf_Ratio a;
    return a.f1(zrf_Ratio(r1.num*r2.den-r2.num*r1.den,r1.den*r2.den));
}

friend zrf_Ratio operator*(const zrf_Ratio& r1, const zrf_Ratio& r2)
{
    zrf_Ratio a;
    return a.f1(zrf_Ratio(r1.num*r2.num,r1.den*r2.den));
}

friend zrf_Ratio operator/(const zrf_Ratio& r1, const zrf_Ratio& r2)
{
    zrf_Ratio a;
    return a.f1(zrf_Ratio(r1.num*r2.den,r1.den*r2.num));
}

private:
int num,den;
};
int mian()
{
zrf_Ratio x(3,7),y(4,9),z;
z=x.operator-(y);
cout<<"x-y="<<z<<endl;
z=x+y;
cout<<"x+y="<<z<<endl;
z=x-y;
cout<<"x-y="<<z<<endl;
z=x*y;
cout<<"x*y="<<z<<endl;
z=x/y;
cout<<"x/y="<<z<<endl;
return 0;
}
顯示錯誤如下:
Deleting intermediate files and output files for project '2 - Win32 Debug'.
--------------------Configuration: 2 - Win32 Debug--------------------
Compiling...
2.cpp
Linking...
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/2.exe : fatal error LNK1120: 1 unresolved externals
執行 link.exe 時出錯.

2.exe - 1 error(s), 0 warning(s)

最佳回答:


main拼寫錯了

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