题目:用子函数求出worker数组中每个工人的实发工资(税率自定)c++ 求简单易懂程序。

2024-12-19 08:09:50
推荐回答(2个)
回答1:

class worker
{
private:
double 工资;
static double 税率;
public:
double get工资(){return 工资;}
double get税率();{return 税率;}
double get实际工资();{return 工资*税率;}

};static double worker::税率=0.001;

回答2:

数组在哪儿啊