1、向有序數組中插入一個元素
功能描述:一個按照由大到小排列的數組{85,63,49,22,10},它的最後一個元素沒有賦值,現在要插入一個數值,仍保持數組中的數值按照由大到小排列。輸出插入的位置以及插入後數組中的元素。
提示:編寫方法public int[] insertNum(int[] arr,int num).
2、實現用戶登錄
功能描述:實現用戶登錄功能,在控制台輸入用戶名和密碼,然後判斷輸入是否正確並給出結果,如下圖所示:
提示:編寫方法public boolean login(String name,String password).
//java我們學的還很淺,才學到帶參方法。必須用到測試類,求大神幫忙!
(1) int[] temp = new int[arr.length+1];
int[] result = new int[arr.length+1];
for (int i = 0; i < arr.length; i++) {
temp[i] = arr[i];
}
temp[arr.length] = num;
Arrays.sort(temp);
for (int i = 0,j=temp.length-1; i < temp.length; i++,j--) {
result[i] = temp[j];
}
return result;