日韩亚洲专区中文字幕|五月天国产精品免费视频|中文字幕乱码亚州无线码二区|亚洲中文免费AV

<ul id="eu2wk"><blockquote id="eu2wk"></blockquote></ul>
  • <td id="eu2wk"><code id="eu2wk"></code></td>

    當前位置:高考升學網 > 招聘筆試題 > 正文

    金蝶Java筆試題和面試題答案

    更新:2023-09-17 14:34:53 高考升學網

      金蝶是香港聯交所主板上市公司(股票代碼:0268),中國軟件產業(yè)領導廠商,亞太地區(qū)管理軟件龍頭企業(yè),全球領先的滘口中間件軟件、在線管理及全程電子商務服務商。金蝶幫助顧客成功,讓中國管理模式在全球崛起為使命,為世界范圍內超過400萬家企業(yè)和政府組織成功提供了管理咨詢和信息化服務。
      如下是一套金蝶Java筆試題,提供給大家了解。

    一、100,100,102,106,112,120 ,130

      0,2,4,6,8

      x-8 = 2

      x = 10

      n-120 = x

      n = 130

    二、有兩個數組A,B,B數組中的元素包含在A數組中,請寫一段代碼把A數組中B沒有的元素放到C數組中。

      int [] A = new int[]{0,1,2,3,4,5,6,7,8,9};

      int [] B = new int[]{2,4,6,8};

      int [] C =new int[A.length-B.length];

      int count = 0;

      for(int i = 0;i < A.length;i++){

      boolean bool = true;

      for(int j = 0;j < B.length;j++){

      if(A == B[j]){

      bool = false;

      }

      }

      if(bool){

      C[count] = A;

      count++;

      }

      }

      for(int i = 0;i < C.length;i++){

      System.out.println(C);

      }

    三、假如數組中都是數字,而且已經按大小排序,請寫一段代碼最快效率把上一題的元素放到C數組中。

      int [] num = new int[]{0,1,2,3,4,5,6,7,8,9};

      int [] temp = new int[num.length];

      temp = num;

      for(int i = 0;i < temp.length;i++){

      System.out.println(temp);

      }

    四、寫一個對數組的排序的代碼段。

      int [] num = new int[]{4,6,2,7,1,3,9,8,5,0};

      for(int i = 0;i < num.length;i++){

      for(int j =0;j < num.length;j++){

      if(num < num[j]){

      int temp = 0;

      temp = num;

      num = num[j];

      num[j] = temp;

      }

      }

      }

      for(int i = 0;i < num.length;i++){

      System.out.println(num);

      }

    五、jsp與servlet的區(qū)別?它們的生命周期?jsp或servlet的轉發(fā)(forword),包含(include),重定向(Redirect)的區(qū)別?

    六、MVC的概念?你用過哪些基于MVC的框架?

    最新圖文

    2020年河北新聞網兩學一做

    時間:2023-09-18 07:0:24

    2020年河北新聞網兩學一做

    時間:2023-09-15 11:0:59

    兩學一做學習教育知

    時間:2023-09-21 06:0:30

    2020年開展兩學一做學習教

    時間:2023-09-19 21:0:30