當前位置:學問谷 >

職場範例 >筆試 >

Java筆試題推薦

Java筆試題推薦

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

Java筆試題推薦

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[th];

int count = 0;

for(int i = 0;i < th;i++){

boolean bool = true;

for(int j = 0;j < th;j++){

if(A == B[j]){

bool = false;

}

}

if(bool){

C[count] = A;

count++;

}

}

for(int i = 0;i < th;i++){

tln(C);

}

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

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

int [] temp = new int[th];

temp = num;

for(int i = 0;i < th;i++){

tln(temp);

}

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

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

for(int i = 0;i < th;i++){

for(int j =0;j < th;j++){

if(num < num[j]){

int temp = 0;

temp = num;

num = num[j];

num[j] = temp;

}

}

}

for(int i = 0;i < th;i++){

tln(num);

}

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

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

標籤: java 筆試
  • 文章版權屬於文章作者所有,轉載請註明 https://xuewengu.com/flzc/bishi/ymdvve.html