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;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 搭建pt1000三线制高精度测温电路
  • ¥15 使用Jdk8自带的算法,和Jdk11自带的加密结果会一样吗,不一样的话有什么解决方案,Jdk不能升级的情况
  • ¥15 画两个图 python或R
  • ¥15 在线请求openmv与pixhawk 实现实时目标跟踪的具体通讯方法
  • ¥15 八路抢答器设计出现故障
  • ¥15 opencv 无法读取视频
  • ¥15 按键修改电子时钟,C51单片机
  • ¥60 Java中实现如何实现张量类,并用于图像处理(不运用其他科学计算库和图像处理库))
  • ¥20 5037端口被adb自己占了
  • ¥15 python:excel数据写入多个对应word文档