qq_34324657 2016-04-10 03:49 采纳率: 25%
浏览 1327
已采纳

烦请各位大神给小妹瞅瞅

#include
using namespace std;
class xx
{
public:
xx()
{
quantity=0;
price=0;
}
void total();
static float average();
static void display();
private:

int quantity;
float price;
static double discount;
static float sum;
static int n;

};
void xx:: total()
{

if(quantity>=10)
    price=0.98*price;
    sum=quantity*price;
n+=quantity;

}float xx::average()
{
return(sum/n);
}
double xx::discount=0.98;
float xx::sum=0;
int xx::n=0;
void xx::display()
{
cout<<"sum:"<<sum<<" "<<"average:"<<xx::average()<<endl;
}
int main()
{
xx t1[3]={xx(5,23.5),
xx(12,24.56),
xx(100,21.5),
}
t1[0].total ();

t1[1].total ();

t1[2].total ();

t1.display();
return 0;

}
问题;C:\Users\dell\Desktop\8.cpp(42) : error C2661: 'xx::xx' : no overloaded function takes 2 parameters

  • 写回答

1条回答 默认 最新

  • 小灸舞 2016-04-10 04:15
    关注

    因为楼主下面xx(5,23.5)是这样创建对象的,但又没有重载的构造函数满足,所以会报错
    在类xx里面定义一个这样的构造函数就行了
    另外还有两个小地方要改一下,我都标注了

     #include<iostream>
    #include<string>
    using namespace std;
    class xx
    {
    public:
        xx()
        {
            quantity=0;
            price=0;
        }
        xx(int a, float b) //第一处问题
        {
            quantity = a;
            price = b;
        }
        void total();
        static float average();
        static void display();
    private:
        int quantity;
        float price;
        static double discount;
        static float sum;
        static int n;
    };
    void xx:: total()
    {
        if(quantity>=10)
            price=0.98*price;
        sum=quantity*price;
        n+=quantity;
    }float xx::average()
    {
        return(sum/n);
    }
    double xx::discount=0.98;
    float xx::sum=0;
    int xx::n=0;
    void xx::display()
    {
        cout<<"sum:"<<sum<<" "<<"average:"<<xx::average()<<endl;
    }
    int main()
    {
        xx t1[3]={xx(5,23.5),
            xx(12,24.56),
            xx(100,21.5),
        };             //第二处,少了分号
        t1[0].total ();
        t1[1].total ();
    
        t1[2].total ();
    
        t1[0].display(); //第三处
        return 0;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料