首頁(yè) - 網(wǎng)校 - 萬(wàn)題庫(kù) - 美好明天 - 直播 - 導(dǎo)航
您現(xiàn)在的位置: 考試吧 > 自學(xué)考試 > 歷年真題 > 工學(xué)類(lèi) > 正文

全國(guó)2010年10月高等教育C++程序設(shè)計(jì)自考試題

 

  42. #include < iostream, h >

  class test {

  private : int x, y;

  public : void testl ( int a, int b) { x = a ; y = b;}

  int max( );

  };

  int test:max( ) {if(x>y) return x;else return y;}

  void main( ){

  test a;

  a. testl ( 1,3);

  cout << a. max ( ) << endl;

  }

  43. #include < iostream, h >

  void main() {

  int x =5;

  const int * const p = &x;

  * p =88;

  cout << * p << endl;

  }

  44. #include < iostream, h >

  class point

  {

  private : float x, y ;

  public : f( float a, float b) { x = a ; y = b ; }

  f( ) {x=O;y=O;}

  void getx( ) { cout < < x < < endl; }

  void gety ( ) { cout < < y < < endl ; }

  }

  class pointl

  }

  private : float x, y ;

  public : f( float a, float b) { x = a; y = b ; }

  f( ){x=l;y=l;}

  void getx( ) {cout <

  void gety( ) {cout <

  };

  main( ) I

  point a;

  a.f();

  a. getx( ) ;a. gety ( );

  }

  45. #include < iostream, h >

  void main( ) {

  string strl (" we are here" );

  cout << strl << endl;

  }

  四、完成程序題(本大題共5小題,每題4分,共20分)

  46.在下面程序的下劃線(xiàn)處填上正確的數(shù)據(jù)類(lèi)型,保證程序具有如下輸出結(jié)果:

  0

  17

  17,17,17

  源程序如下:

  #include < iostream >

  using namespace std;

  class base

  {

  public :

  ______________num;

  base ( ) { }

  };

  int base::hum = 0;

  void main( )

  {

  cout << base::num << endl;

  _________________* p=&base : :num;

  *p=17;

  cout << base::num << end1;

  base a,b;

  cout << * p<<"," << a. hum << "," <

  47.在下面橫線(xiàn)處填上正確的內(nèi)容,完成類(lèi)的定義。

  class Base

  {

  int x;

  static const int b;

  public:

  Base( int, int);

  const int &a;

  };

  ______________b =15;

  Base::Base(int i,int j): ___________{ }

  48.完成下面程序中的show函數(shù)的定義,使其運(yùn)行結(jié)果如下:

  In base

  In derived

  程序清單如下:

  #include

  using namespace std;

  class base

  {

  pubhc :

  virtual void print( )

  {

  cout << "In base" << endl;

  }

  };

  class derived: public base

  {

  public :

  void print( ) { cout << "In derived" << endl; }

  };

  void show(base * pb,void (base:: * pf) ( ) )

  {

  _________

  }

  void main( )

  {

  base b;

  derived d ;

  show ( &b, base::print);

  show ( &d, base::print);

  }

  編輯推薦:

  2010年10月自考試題及答案發(fā)布專(zhuān)題

  各地2010年10月自考成績(jī)查詢(xún)時(shí)間及查詢(xún)方式匯總

  考試吧策劃:2011年自學(xué)考試報(bào)考完全指南
文章搜索
萬(wàn)題庫(kù)小程序
萬(wàn)題庫(kù)小程序
·章節(jié)視頻 ·章節(jié)練習(xí)
·免費(fèi)真題 ·?荚囶}
微信掃碼,立即獲!
掃碼免費(fèi)使用
大學(xué)語(yǔ)文
共計(jì)461課時(shí)
講義已上傳
18020人在學(xué)
管理系統(tǒng)中計(jì)算機(jī)應(yīng)用
共計(jì)21課時(shí)
講義已上傳
7218人在學(xué)
政治經(jīng)濟(jì)學(xué)(財(cái)經(jīng)類(lèi))
共計(jì)738課時(shí)
講義已上傳
87485人在學(xué)
經(jīng)濟(jì)法概論(財(cái)經(jīng)類(lèi))
共計(jì)21課時(shí)
講義已上傳
989人在學(xué)
毛概
共計(jì)269課時(shí)
講義已上傳
16493人在學(xué)
推薦使用萬(wàn)題庫(kù)APP學(xué)習(xí)
掃一掃,下載萬(wàn)題庫(kù)
手機(jī)學(xué)習(xí),復(fù)習(xí)效率提升50%!
版權(quán)聲明:如果自學(xué)考試網(wǎng)所轉(zhuǎn)載內(nèi)容不慎侵犯了您的權(quán)益,請(qǐng)與我們聯(lián)系800@exam8.com,我們將會(huì)及時(shí)處理。如轉(zhuǎn)載本自學(xué)考試網(wǎng)內(nèi)容,請(qǐng)注明出處。
官方
微信
掃描關(guān)注自考微信
領(lǐng)《大數(shù)據(jù)寶典》
報(bào)名
查分
掃描二維碼
關(guān)注自考報(bào)名查分
看直播 下載
APP
下載萬(wàn)題庫(kù)
領(lǐng)精選6套卷
萬(wàn)題庫(kù)
微信小程序
幫助
中心
文章責(zé)編:wbian