返回列表 發帖

Java 基礎架構與輸出入

本帖最後由 b790113g 於 2011-12-10 11:31 編輯 6 p' K! B0 r7 d/ j1 o8 m! |2 P; L9 a4 @
  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& v# M% G6 V5 ]/ Y( V" \" h0 N
# r5 p  B' c: ?  \
{: c5 {$ a! ^% J4 C  e. K; e' c

4 {: `& A9 k! Y! z7 `1 @    public static void main(String[]arg)% ]& S% r# s: z7 K* E

1 a$ s: s7 L8 H. [* r3 G! u+ n        {$ O: m0 d4 B, K5 ^+ G, j

$ \% Z2 k1 U& ?+ @+ X! c                for(int i=0;i<arg.length;i++)
  C" Y1 @: K+ W" e0 Z
$ r% R! f6 T- U$ R& K                {
2 h- p( r5 N: E5 G# c( `; r  n6 w6 _; r/ x2 L
                        System.out.println(arg[i]);# x, C( ], G8 ^5 Y2 g1 E( N2 m

2 ]$ i) P9 p& B5 J( O5 D                }
1 g. s/ v+ A' D; }0 Y; s  |3 K0 o
5 y/ g, h+ A( L2 k, d   
+ E' k( K( k! a# E9 n; Q
. t$ u: c$ s& |2 ^' l0 S    }- _9 g% }) T+ V. A* L) ]0 Z+ v, a- B

. a4 y8 [1 i$ x# L2 c6 _5 G& d; W+ J$ I/ s# Y

7 M9 }$ p2 n  ]5 @% {9 h1 Z# E. [; L7 V' e9 w

! R. I0 `" i' W/ r: }8 ]}
人平

TOP

返回列表