瑞星卡卡安全论坛技术交流区系统软件 【求助】C++(意想不到的文件结束发现了)

1   1  /  1  页   跳转

【求助】C++(意想不到的文件结束发现了)

【求助】C++(意想不到的文件结束发现了)





哥們幫我    !!!!!

#include<iostream.h>
#include<string.h>
#define PI 3.14159
class Circle
{
private:
    double radius;
    double aear;
public:
    void Get_R_Aear(double r,double a)
    {
        radius=r;
        aear=a;
        a=PI*r*r;
    }
    void Show_Aear(double r,double a)
    {
        cout<<"輸入r:";
        cin>>r;
        cout<<"面積為:"<<a<<endl;
    }
};
class Table
{
private:
    int height;
public:
    int Get_Height(int h)
    {
     return height=h;
    };
    void Show_Height()
    {
        cout<<"高為:"<<height<<endl;
    };
};
class Roundtable:public Circle,public Table
{
private:
    char Color[5];
public:
     Get_Color(char c[])
    {
         strcpy(Color,c);
    };
    void Show_Color()
    {
        cout<<"顔色為:"<<Color<<endl;
   
    };
};
void main()
{
    Roundtable Rt;
    Rt.Get_R_Aear();   
    Rt.Show_Aear();
    Rt.Get_Height(100);
    Rt.Show_Height();
    Rt.Get_Color("red");
    Rt.Show_Color();
}
最后编辑2007-05-01 11:50:24
分享到:
gototop
 

G:\待休整程序\新建文件夹\練習.cpp(45) : warning C4183: 'Get_Color': member function definition looks like a ctor, but name does not match enclosing class
G:\待休整程序\新建文件夹\練習.cpp(55) : error C2660: 'Get_R_Aear' : function does not take 0 parameters
G:\待休整程序\新建文件夹\練習.cpp(56) : error C2660: 'Show_Aear' : function does not take 0 parameters
执行 cl.exe 时出错.

練習.exe - 1 error(s), 0 warning(s)
gototop
 

怎麽就沒一個熱心人幫我呢??
世態炎涼 阿!!
gototop
 
1   1  /  1  页   跳转
页面顶部
Powered by Discuz!NT