2014-CVTE網(wǎng)測(cè)部分軟件技術(shù)測(cè)試題及答案_第1頁(yè)
2014-CVTE網(wǎng)測(cè)部分軟件技術(shù)測(cè)試題及答案_第2頁(yè)
2014-CVTE網(wǎng)測(cè)部分軟件技術(shù)測(cè)試題及答案_第3頁(yè)
2014-CVTE網(wǎng)測(cè)部分軟件技術(shù)測(cè)試題及答案_第4頁(yè)
2014-CVTE網(wǎng)測(cè)部分軟件技術(shù)測(cè)試題及答案_第5頁(yè)
已閱讀5頁(yè),還剩6頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、1、叉樹(shù)的先序遍歷序列和后序遍歷序列正好相反,則該二叉樹(shù)滿(mǎn)足的條件是(D)A、空或只有一個(gè)結(jié)點(diǎn) B、高度等于其結(jié)點(diǎn)數(shù) C、該二叉樹(shù)是完全二叉樹(shù) D、所有結(jié)點(diǎn)無(wú)右孩子應(yīng)該是二叉樹(shù)的每個(gè)結(jié)點(diǎn)都只有一個(gè)(左或右)子樹(shù)時(shí),先序和和后序正好相反2、假設(shè)X是這樣的自然數(shù),X能被4整除或者X的個(gè)位數(shù)是3,那么在3000以?xún)?nèi)(小于1000),求這樣的X的累加之和。(1575900)cpp view plaincopyprint?1. #include "stdafx.h"  2.   3. #include  

2、4.   5. #include  6.   7. #include  8.   9. #include "math.h"  10.   11. #include  12.   13. #include  14.   15.    16.   17. using namespace

3、0;std;  18.   19.    20.   21.    22.   23. int main(int argc, _TCHAR*argv)  24.   25.   26.   27.     int i,sum=0;  28.   29. 

4、60;  30.   31.     for(i=0; i<=3000;i+)  32.   33.       34.   35.        if(i%4=0 | i=3)  36.   37.     &#

5、160;    38.   39.            sum = sum+i;  40.   41.          42.   43.       44.   45. &#

6、160;  printf("%dn", sum);  46.   47.     return 0;  48.   49.   3、某公司數(shù)據(jù)庫(kù)密碼規(guī)定為5位組成的字符串,存儲(chǔ)之前,需要將其加密,加密算法為:依次將每個(gè)字符依次將每個(gè)字符的ASC碼值乘以2,再加上10,若計(jì)算到的新字符的值等于128,則繼續(xù)將其除以3,否則不進(jìn)行除法運(yùn)算。最后將該得到的新字符串中所有字符前后互換(第一位和最后一位,第

7、二位和倒數(shù)第二位交換,依次交換),編程求字符串“efvrg”加密后的字符串。(HORGF)cpp view plaincopyprint?1. #include "stdafx.h"  2.   3. #include  4.   5. #include  6.   7. #include  8.   9. #include "math.h"  1

8、0.   11. #include  12.   13. #include  14.   15. using namespace std;  16.   17. int main(int argc, _TCHAR*argv)  18.   19.   20.   21.    char p

9、wd= "efvrg",temp;  22.   23.    int len =strlen(pwd);  24.   25.    26.   27.    for(inti=0;i  28.   29.     30.   31.   

10、;    printf("%cn",pwdi);  32.   33.       if(pwdi*2+10)>=128)  34.   35.         36.   37.          &#

11、160;pwdi=(pwdi*2+10)/3;  38.   39.           printf("新字符的值等于128%cn",pwdi);  40.   41.         42.   43.       else 

12、 44.   45.         46.   47.           pwdi=(pwdi*2+10);  48.   49.           printf("小于128%cn",pwdi);

13、60; 50.   51.         52.   53.     54.   55.    56.   57.    for(intj=0;j  58.   59.     60.   61.   

14、60;   temp=pwdj;  62.   63.       pwdj=pwdlen-j-1;  64.   65.       pwdlen-j-1=temp;  66.   67.     68.   69.    70. 

15、60; 71.    for(intj=0;j  72.   73.     74.   75.       printf("加密后的字符串%cn",pwdj);  76.   77.     78.   79.    80.   

16、;81.    return0;  82.   83.   5、為了有效的捕獲系統(tǒng)需求,應(yīng)采用(C)A、瀑布模型 B、V 模型 C、原型模型 D、螺旋模型 12、2到38642之間個(gè)位數(shù)為1的素?cái)?shù)(只能被自己和1整除的數(shù))的和是(18343110)cpp view plaincopyprint?1. #include "stdafx.h"  2.   3. #include  4.  &

17、#160;5. #include  6.   7. #include  8.   9. #include "math.h"  10.   11. #include  12.   13. #include  14.   15.    16.   17. using namespace std;

18、0; 18.   19.    20.   21.    22.   23. int main(int argc, _TCHAR*argv)  24.   25.   26.   27.      int i=0,sum=0;  28.   29.  

19、;  30.   31.      for(i=2; i<=38642; i+)  32.   33.        34.   35.             int a,b,m = i/2; 

20、; 36.   37.               38.   39.             a=i;  40.   41.           &

21、#160;   42.   43.             while (i%m!=0  && m>1)  44.   45.               46.   

22、47.                    m-;  48.   49.               50.   51.        &

23、#160;      52.   53.             if (a=1  && m=1)  54.   55.               56. 

24、60; 57.                    sum += i;  58.   59.               60.   61.    

25、    62.   63.      printf("%dn",sum);  64.   65.    66.   67.      return 0;  68.   69.   70.   71. 13、有關(guān)類(lèi)和對(duì)象的說(shuō)法中不正確的一項(xiàng)是

26、(C)  72.   73. A、對(duì)象是類(lèi)的一個(gè)實(shí)例 B、任何一個(gè)對(duì)象只能是屬于一個(gè)具體的類(lèi) C、一個(gè)類(lèi)只能有一個(gè)對(duì)象 D、類(lèi)與對(duì)象的關(guān)系與數(shù)據(jù)模型和變量的關(guān)系類(lèi)似  74.   75.    76.   77. 26、寫(xiě)出下列程序運(yùn)行的結(jié)果(BAAAABCAAABCDAABCD)  78.   79.  #include  80.   81. &

27、#160;#include  82.   83.   intmain()  84.   85.      charstr1100="BCD"  86.   87.      char str2100="AAAAA"  88.   89.   

28、0; int i=0;  90.   91.      for(i=1;i<=4;i+)  92.   93.          memcpy(str2,str1,i);  94.   95.          printf

29、("%s",str2);  96.   97.       98.   99.     return 0;  100.   101.    15、輸出712的N次方,結(jié)果后三位為696的N的個(gè)數(shù),0(246)cpp view plaincopyprint?1. #include "stdafx.h"

30、  2.   3. #include  4.   5. #include  6.   7. #include  8.   9. #include "math.h"  10.   11. #include  12.   13. #include  14.   15.   

31、 16.   17. using namespace std;  18.   19.    20.   21. int main(int argc, _TCHAR* argv)  22.   23.   24.   25.     intsum=712,count=0;  26.

32、   27.    28.   29.     for(inti=0;i<24669;i+)  30.   31.       32.   33.        sum=sum*71200;  34.   35.    &#

33、160;   if(sum=696)  36.   37.            count+;  38.   39.       40.   41.    printf("輸出712的N次方,結(jié)果后三位為696的N的個(gè)數(shù)為:%d (0)"

34、,count);  42.   43.    scanf("%d",&count);  44.   45.    46.   47.     return0;  48.   49.     16、輸出下面的第三行的結(jié)果(7)public class Hello  

35、0;   public static void main(String args)                 String overview = "This chapter contains a description ofconvertions used in this manual"       &

36、#160;    for (int i = 0; i < overview.length();i+)                               int num = 0;     

37、;              for (int j = 0; j < overview.length();j+)                            

38、60;                if (overview.charAt(i) = overview.charAt(j)                          &#

39、160;      num+;                                      System.out.println(num);

40、60;                17、不屬于構(gòu)造函數(shù)特征的是(D)A、構(gòu)造函數(shù)的函數(shù)名與類(lèi)名同名 B、構(gòu)造函數(shù)可以重載 C、構(gòu)造函數(shù)可以設(shè)置缺省(默認(rèn))參數(shù) D、構(gòu)造函數(shù)必須指定類(lèi)型說(shuō)明 18到5635468724之間的最大素?cái)?shù)是?1340501419cpp view plaincopyprint?1. #include "stdafx.h"  2.  

41、; 3. #include  4.   5. #include  6.   7. #include  8.   9. #include "math.h"  10.   11. #include  12.   13. #include  14.   15.    16.   17. using namespace std;  18.   19.    20.   21.    22.   23. int main(int argc, _TCHAR*argv)&

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論