返回列表 發帖

Java 基礎架構與輸出入

本帖最後由 b790113g 於 2011-12-10 11:31 編輯
$ O1 |) Q8 o7 U/ o1 n0 u
  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
% K1 I4 k0 W0 T* M4 s3 w6 }
  A- X6 y2 s4 p1 V{
8 U" ]7 E. ?& n( @( T8 ], }/ m4 c) V# R7 A0 S6 w0 {# k8 k2 K
    public static void main(String[]arg)2 W, d- Z6 b5 l7 A" W) y/ b
& l( H( p& u" t9 ?  P( u3 |  N8 q3 Z( B
        {# d4 \& P+ c' `" V' g- f

3 V8 K3 g6 I. R$ t& `                for(int i=0;i<arg.length;i++)
* f' c' E1 g3 j' ?9 `; _- u- g/ [# }
                {7 t+ N8 Z( S3 g& U
0 r0 n2 A9 [6 l
                        System.out.println(arg[i]);
! |" w( L# y5 E# i' s) s( E( G7 _/ b% b
                }( M0 y2 O0 A$ e( t' R  O

- T4 g3 b. X5 U2 N4 _5 R   
8 B/ F/ Y5 R4 M/ A- {, B4 ?0 L( C+ V3 m5 G  o- C% r% x
    }! [2 Z. p6 K) e: v
" u4 J9 s# [/ i% p1 Z7 K
; \2 ^/ q' [2 d# x

- }& d# `& s6 w& |2 Z' O( f3 U
* J, G% d! D0 l7 f3 n
2 [- B$ `% @1 C; q$ d2 X2 \) c}
人平

TOP

返回列表