在应付款管理系统与总账系统集成使用的情况下,应付款管理系统向总账系统传递()
A.应用函数
B.分析数据
C.凭证
D.付款结算情况
参考答案:C
下列名词中属于生物的有①山羊②生物课本③病毒④死山羊⑤恐龙蛋化石⑥课桌( )
A.①②③
B.②④⑤⑥
C.①③④
D.①③
下列程序的输出结果是 #include class Myclass { public:Myclass(int i=0,intj=0) { x=i;y=j; } void show( ) { cout < < "x=" < < x < < " " < "y=" < < y < < end1;} void show( )const { cout < < "x=" < < " " < < "y=’ < < y < < end1;} privated:int x; int y; }; void main( ) { Myclass my1(3,4); const my2(7,8); my1.show( );my2.show( );}
A.x=4,y=3;x=7,y=8
B.x=3,y=4;x=7,y=8
C.x=7,y=8;x=4,y=3
D.x=8,y=7;x=7,y=8