返回列表 發帖

Java 基礎架構與輸出入

本帖最後由 b790113g 於 2011-12-10 11:31 編輯 0 Z* }2 W( {9 h# D% Z3 I
  1. public class d1210 {

  2.         public static void main(String[] arg){
  3.        
  4.                 for(int i=0;i<arg.length;i++){
  5.                
  6.                         System.out.println(arg[i]);
  7.                        
  8.                 }
  9.                
  10.         }

  11. }
複製代碼
  1. public class d1210 {

  2.         public static void main(String[] arg){
  3.        
  4.                 try{
  5.                         System.out.println(arg[0]);
  6.                 }catch(Exception e){}
  7.                
  8.                 try{
  9.                         System.out.println(arg[1]);
  10.                 }catch(Exception e){}
  11.                
  12.         }

  13. }
複製代碼
d1210 處一定要跟檔名相同

  1. public class tom1210
  2. {
  3.     public static void main(String[]arg)
  4.         {
  5.                 for(int i=0;i<arg.length;i++)
  6.                 {
  7.                         System.out.println(arg[i]);
  8.                 }
  9.    
  10.     }


  11. }
複製代碼
水桶小鄭,鯰魚

TOP

  1. public class j1210{
  2.     public static void main(String[]arg){
  3.        
  4.         for(int i=0;i<arg.length;i++)
  5.         {
  6.        
  7.         System.out.println(arg[i]);
  8.        
  9.         }
  10.        
  11.        
  12.     }
  13. }
複製代碼
小雲雀

TOP

  1. public class j1 {
  2. public static void main(String[] args){
  3.         for(int i=0;i<args.length;i++){
  4.                 System.out.print("你好!");
  5.                 System.out.println(args[i]+",");
  6.                 System.out.println("我叫陳彥綸!");
  7.                 System.out.println("粉高興認識你!");
  8.                 System.out.println("bye-bye!");
  9.         }
  10. }
  11. }
複製代碼
陳彥綸

TOP

public class tom1210
" G- J6 J8 @" f' c& F$ ]* Q
6 D; w' H* B! e/ ?$ i{
" Y1 o3 x) m7 H1 ^
# g, R: W: E: X    public static void main(String[]arg)4 p8 ?8 m0 Y: G1 F

  G# o2 F0 I5 k) W        {' C7 e$ @4 R3 H0 V0 r- a2 i. ?, Y
+ |$ t7 d( C7 Z% P
                for(int i=0;i<arg.length;i++)
( m" |$ a3 U% @8 Z
3 a) |2 d( M$ W! }9 O3 n/ J! ]                {# H1 m7 S0 P0 `7 Y
! I5 W" c! k% l) u5 ?5 I$ l
                        System.out.println(arg[i]);! N- y. N; _7 N# ?3 {
$ N" j4 b) U- Q7 k+ G
                }
2 r1 F% O' Q1 J
. `# Q% T1 t6 c8 X7 t   
. }) k+ e5 W. ^& {0 k; w
$ }0 f) {; j. {$ G* t0 a' ~    }6 a8 s2 x) i' P. k+ J" x9 z: }( R
6 h# ?+ C* T0 C# q7 N0 U

  D, y  U" E# r9 _( f8 e* S) T# a5 n$ J7 N  |! K5 E

/ u8 H4 y$ \" ]& T/ T  H6 n0 {8 n; w, r' s1 s: r
}
人平

TOP

返回列表