1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. 金蝶技術(shù)有限公司Java筆試題

        時(shí)間:2020-11-16 14:26:11 筆試題目 我要投稿

        金蝶技術(shù)有限公司Java筆試題

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

        金蝶技術(shù)有限公司Java筆試題

          0,2,4,6,8

          x-8 = 2

          x = 10

          n-120 = x

          n = 130

          二、有兩個(gè)數(shù)組A,B,B數(shù)組中的元素包含在A數(shù)組中,請(qǐng)寫一段代碼把A數(shù)組中B沒有的元素放到C數(shù)組中。

          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[i] == B[j]){

          bool = false;

          }

          }

          if(bool){

          C[count] = A[i];

          count++;

          }

          }

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

          System.out.println(C[i]);

          }

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

          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[i]);

          }

          四、寫一個(gè)對(duì)數(shù)組的排序的代碼段。

          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[i] < num[j]){

          int temp = 0;

          temp = num[i];

          num[i] = num[j];

          num[j] = temp;

          }

          }

          }

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

          System.out.println(num[i]);

          }

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

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

        【金蝶技術(shù)有限公司Java筆試題】相關(guān)文章:

        技菱系統(tǒng)集成有限公司Java筆試題11-20

        上海立派信息技術(shù)有限公司Java開發(fā)工程師筆試題目11-20

        廣州喜創(chuàng)信息技術(shù)有限公司JAVA軟件工程師筆試題目11-18

        360筆試題目07-11

        華為2017筆試題08-16

        華為2017筆試試題08-10

        Java核心技術(shù)介紹08-22

        精選Java筆試題12-20

        Java經(jīng)典筆試題12-15

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>