计算机2014年二级C上机考试试题及答案9

考试站(www.examzz.com)   【考试站:中国教育考试第一门户】   2014年6月21日
综合应用题 
  使用VC++6.0打开考生文件夹下的源程序文件3.cpp,其中定义了用于表示个人基本信息的类PInfo,但类PInfo的定义并不完整。请按要求完成下列操作,将类Pin-fo的定义补充完成: 
  (1)定义私有数据成员bloodType用于表示血型,血型为char型的数据。请在注释1之后添加适当的语句。 
  (2)完成构造函数的定义,要求具有默认值,默认值为 
  身高175,体重70,血型A。请在注释2之后添加适当的语句。 
  (3)完成类PInfo外成员函数SetInfo的定义。请在注 
  释3之后添加适当的语句。 
  (4)在主函数main中调用成员函数Setlnfo,把对象d2的3个私有数据成员分别设定为身高170,体重64,血型B。 
  请在注释4之后添加适当的语句。 
  注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。 
  试题程序: 
  #include 
  classPlnfo 
  { 
  private: 
  intheight; 
  intweight; 
  //********1******** 
  public: 
  //********2******** 
  :height(ht),weight(wt),bloodType(bt){}; 
  Plnfo(Plnfo&h1):height(h1.height), 
  weight(h1.weight),bloodType(h1.bloodType){} 
  intGetHeight() 
  { 
  returnheight; 
  } 
  intGetWeight() 
  { 
  returnweight; 
  } 
  intGetBloodType() 
  { 
  returnbloodType; 
  } 
  voidSetlnfo(intht,intwt,charbt); 
  voidDisplay(); 
  }; 
  //********3******** 
  { 
  height=ht; 
  weight=wt; 
  bloodType=bt; 
  } 
  voidPlnfo::Display() 
  { 
  cout<<"Humanlnf0:"; 
  cout<  Type"<  } 
  voidmain() 
  { 
  PInfoh1(169,61,’A’); 
  Plnfoh2; 
  Plnfoh3(h1); 
  Plnfoh4(h2); 
  //********4******** 
  h1.Display(); 
  h2.Display(); 
  h3.Display(): 
  h4.Display(); 
  }

相关文章