亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

代碼
提交代碼
public class CharType { public static void main(String[] args) { // 存放一個 ASCII 碼 char a = 97; // 存放一個Unicode字符 char zh = '慕'; System.out.println(a); System.out.println(zh); } }
運行結果