问题 多项选择题

关于客户的个人收入支出表,下列说法中正确的是()。

A.客户的个人收入支出表分为两栏:收入和支出

B.编制个人或家庭收入支出表的目的,是提供个人或家庭获取现金的能力和时间分布,以利于正确地进行消费和投资决策

C.编制家庭收入支出表需要遵循的主要原则有:真实可靠原则、充分反映原则和明晰性原则等

D.收入支出表一般以12个月为一个编制周期

答案

参考答案:B, C, D

解析:客户的个人收入支出表分为三栏:收入、支出和结余(或超支)。收入支出表一般以12个月为一个编制周期,但是,为了更好地和现金规划过程衔接起来,收入支出表可以以一个月为周期进行编制。

选择题
问答题

请使用VC6或使用[答题]菜单打开考生文件夹proj2下的工程proj2,其中定义了vehicle类,并派生出motorcar类和bicycle类。然后以motorcar和bicycle作为基类,再派生出motorcycle类。要求将vehicle作为虚基类,避免二义性问题。请在程序中的横线处填写适当的代码并删除横线,以实现上述类定义。此程序的正确输出结果应为:
80
150
100
1
注意:只能在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“// ****found****”。
#include <iostream.h>
class vehicle

private:
int MaxSpeed;
int Weight;
public:
//**********found**********
vehicle (int maxspeed,intweight):______
~vehicle();
int getMaxSpeed()return MaxSpeed;
int getWeight()return Weight;
;
//**********found**********
class bicycle:______public vehicle

private:
int Height;
public:
bicycle(int maxspeed,int weight,int height):vehicle(maxspeed,weight),Height(height)
int getHeight()return Height;;
;
//**********found**********
class motorcar:______public vehicle

private:
int SeatNum;
public:
motorcar(int maxspeed,int weight,int seatnum):vehicle(maxspeed,weight),SeatNum(seatnum)
int getSeatNum()return SeatNum;;
;
//**********found**********
class motorcycle:______

public:
motorcycle(int maxspeed,intweight,int height):vehicle (maxspeed,weight),bicycle(maxspeed,weight,height),motorcar(maxspeed,weight,1)
;
void main ()

motorcycle a(80,150,100);
cout<<a.getMaxSpeed()<<endl;
cout<<a.getWeight()<<endl;
cout<<a.getHeight()<<endl;
cout<<a.getSeatNum()<<endl;