一JAVA筆試題

2021-04-09 10:47:44 字數 724 閱讀 2121

題目:要求從鍵盤輸入一數字,然後中文輸出(要符合中文語法)

例:12434   輸出 一萬二千四百三十四

string num = "零壹貳叄肆伍陸柒捌玖";

string dw = "圓拾佰仟萬億";

string m = "30020.23";

string mm = null;

mm = m.split("//.");

string money = mm[0];

string result = num.charat(integer.parseint("" + mm[1].charat(0))) + "角" +

num.charat(integer.parseint("" + mm[1].charat(1))) + "分";

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

else if ( (i + 4) % 8 == 0)

else if (i % 8 == 0)

else

result = str + result;

}result = result.replaceall("零([^圓])", "零");

result = result.replaceall("零+", "零");

result = result.replaceall("零圓", "圓");

system.out.println(result);

JAVA筆試題(二)

1 servlet的生命週期?分為三個階段 1 初始化階段,呼叫init 方法 2 響應客戶請求階段,呼叫service方法 3 終止階段 呼叫destroy 方法 2 jdbc的編碼過程?前提 拷貝資料庫的驅動到構建路徑中 classpath 1 註冊驅動 2 獲取與資料庫的連結 3 建立代表sq...

筆試java 實戰筆試題2019

1 常見會話跟蹤技術有哪些?a url重寫 b 隱藏表單域 c cookie d session 4 bean的作用域?singleton 單例型別 prototype 原型型別 request 每次http請求將會產生不同的bean例項 session 對於每次http session,使用ses...

Java 經典筆試題目整理 一

public static void main string args public static intcalculate finally return i i 2 result 3 public static void main string args public static intcalc...

Java筆試題記錄

作業系統死鎖的必要條件 多選題 ad a互斥條件 b系統資源有限 c程序排程不合理 d環路等待條件 解釋 1.互斥。即資源不能被多個程序所佔有。這點其實除了只讀檔案,其他基本都滿足。2.佔有並等待 a程序佔有一些資源,還需要的一些資源被其他程序佔有,所以處在等待狀態。3.非搶佔 資源不能被中途搶佔。...

Java筆試題解(6)

答案 c 解析 本題考察能夠使用一維陣列實現資料儲存,由於陣列中的值都大於0,所以首先第一個max賦值賦值0和num 0 都可以。第二個空,應該填寫陣列長度,求數字長度方法只有num.length,所以只有c答案正確 2 a.int a new int 5 b.int a new int 5 c.i...