JAVA 輸出 你 我 他

01.public class Example {  
02.    public static void main(String[] args){  
03.        E e=new E();  
04.        e.show();  
05.          
06.    }  
07.  
08.}  
09.  
10.public class E {  
11.    public void show(){  
12.        System.out.println((int)'我' );  
13.        System.out.println((int)'你');  
14.        System.out.println((int)'他');  
15.    }  
16.      
17.  
18.}  

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章