精品国产一级毛片大全,毛片一级在线,毛片免费观看的视频在线,午夜毛片福利

網(wǎng)易筆試題

  網(wǎng)友A分享的網(wǎng)易筆試題:

  1、10個(gè)人分成4組 有幾種分法?

  2、如圖:

  7 8 9 10

  6 1 2 11

  5 4 3 12

  16 15 14 13

  設(shè)“1”的坐標(biāo)為(0,0) “7”的坐標(biāo)為(-1,-1) 編寫一個(gè)小程序,使程序做到輸入坐標(biāo)(X,Y)之后顯本文由論文聯(lián)盟https://www.LWlm.com收集整理示出相應(yīng)的數(shù)字。

  3、#include

  //example input and output

  //in 1 2 3 out 1 3 1

  //in 123456789 2 100 out 123456789 100 21

  long mex(long a,long b,long c)

  { long d;

  if(b==0) return 0;

  if(b==1) return a%c;

  d=mex(a,b/2,c); d*=d;這里忘了;d*=mex(a,b%2,c);d%=c;

  return d;

  }

  int main(void)

  { long x,y,z;

  while(1)

  { if(scanf(%d %d %d,&x,&y,&z)>3) return 0;

  if(x<0) { printf("too small\n");continue;}

  if(y<0) { printf("too small\n");continue;}

  if(z<1) { printf("too small\n");continue;}

  if(y>z) { printf("too big\n");continue;}

  if(z>1000000010) {printf("too big\n");continue}

  printf(%d %d %d,x,z,mex(x,y,z);

  }}

  根據(jù)這個(gè)程序,當(dāng)已知一個(gè)輸入,算出輸出,如:輸入 1 3 1 則輸出 1 2 3 輸入 123456789 100 21 輸出 123456789 2 100

 

  網(wǎng)友B分享的網(wǎng)易筆試題:

 

  1. #i nclude 和#i nclude “filename.h” 有什么區(qū)別?

  答:對(duì)于#i nclude ,編譯器從標(biāo)準(zhǔn)庫路徑開始搜索filename.h

  對(duì)于#i nclude “filename.h”,編譯器從用戶的工作路徑開始搜索filename.h

  2. 在C++ 程序中調(diào)用被C 編譯器編譯后的函數(shù),為什么要加extern “C”?

  答:C++語言支持函數(shù)重載,C 語言不支持函數(shù)重載。函數(shù)被C++編譯后在庫中的名字與C 語言的不同。假設(shè)某個(gè)函數(shù)的原型為: void foo(int x, int y);

  該函數(shù)被C 編譯器編譯后在庫中的名字為_foo , 而C++ 編譯器則會(huì)產(chǎn)生像_foo_int_int 之類的名字。

  C++提供了C 連接交換指定符號(hào)extern“C”來解決名字匹配問題。

  3. 一個(gè)類有基類、內(nèi)部有一個(gè)其他類的成員對(duì)象,構(gòu)造函數(shù)的執(zhí)行順序是怎樣的?

  答:先執(zhí)行基類的(如果基類當(dāng)中有虛基類,要先執(zhí)行虛基類的,其他基類則按照聲明派生類時(shí)的順序依次執(zhí)行),再執(zhí)行成員對(duì)象的,最后執(zhí)行自己的。

  4. New delete 與malloc free 的區(qū)別

  答案:用malloc 函數(shù)不能初始化對(duì)象,new 會(huì)調(diào)用對(duì)象的構(gòu)造函數(shù)。Delete 會(huì)調(diào)用對(duì)象的destructor,而free 不會(huì)調(diào)用對(duì)象的destructor.

  5. Struct 和class 的區(qū)別

  答案:struct 中成員變量和成員函數(shù)默認(rèn)訪問權(quán)限是public,class 是private

  6.請(qǐng)問下面程序有什么錯(cuò)誤?

  int a[60][250][1000],i,j,k;

  for(k=0;k<=1000;k++)

  for(j=0;j<250;j++)

  for(i=0;i<60;i++)

  a[i][j][k]=0;

  答案:把循環(huán)語句內(nèi)外換一下

  7. 請(qǐng)寫出下列代碼的輸出內(nèi)容

  #include

  main()

  {

  int a,b,c,d;

  a=10;

  b=a++;

  c=++a;

  d=10*a++;

  printf("b,c,d:%d,%d,%d",b,c,d);

  return 0;

  }

  答:10,12,120

  8. 寫出BOOL,int,float,指針類型的變量a 與零的比較語句。

  答案: BOOL : if ( !a )

  int : if ( a == 0)

  float : const EXPRESSION EXP = 0.000001

  if ( a < EXP && a >-EXP)

  pointer : if ( a != NULL)

  9.已知strcpy 函數(shù)的原型是:

  char *strcpy(char *strDest, const char *strSrc);

  其中strDest 是目的字符串,strSrc 是源字符串。不調(diào)用C++/C 的字符串庫函數(shù),請(qǐng)編寫函數(shù) strcpy

  答案:

  char *strcpy(char *strDest, const char *strSrc)

  {

  if ( strDest == NULL || strSrc == NULL)

  return NULL ;

  if ( strDest == strSrc)

  return strDest ;

  char *tempptr = strDest ;

  while( (*strDest++ = *strSrc++) != ‘’)

  ;

  return tempptr ;

  }

  10.寫一個(gè)函數(shù)找出一個(gè)整數(shù)數(shù)組中,第二大的數(shù)

  答案:

  const int MINNUMBER = -32767 ;

  int find_sec_max( int data[] , int count) //類似于1 4 4 4這樣的序列將認(rèn)為1是第二大數(shù)

  {

  int maxnumber = data[0] ;

  int sec_max = MINNUMBER ;

  for ( int i = 1 ; i < count ; i++)

  {

  if ( data[i] > maxnumber )

  {

  sec_max = maxnumber ;

  maxnumber = data[i] ;

  }

  else

  {

  if ( data[i] > sec_max )

  sec_max = data[i] ;

  }

  }

  return sec_max ;

  }



閱讀寫的讀者還可以閱讀:
潤信科技筆試題
中信證券筆試題目
伊利2014最新筆試題
創(chuàng)聯(lián)軟件熱門筆試題

本文已影響6827
上一篇:NHN CHINA公司筆試題 下一篇:網(wǎng)易汽車新聞編輯筆試題

相關(guān)文章推薦

|||||