返回列表 發帖

Java 基礎架構與輸出入

本帖最後由 b790113g 於 2011-12-10 11:31 編輯
% B5 [2 U& p& ?" M5 L* ?8 E
  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 處一定要跟檔名相同

public class tom1210
2 t9 Q9 ]1 Y. O  m; x+ W  ^9 W3 v% Z. _& e; X# V
{
! h6 ?* \9 @/ m
5 a$ Y9 @9 Q6 Z    public static void main(String[]arg)0 ~. U* J6 c9 \* r4 f
6 x8 Z6 u' R8 H
        {
1 P( k/ q/ \1 R. L) {( v# g6 v0 C3 M! k- H% Q/ g* M) P+ j
                for(int i=0;i<arg.length;i++)7 @7 ], z5 a  s. M; y' Z
* |" L' [" \: }+ g$ D' B
                {
# ]) [1 ?7 E  ?1 x: G0 b$ A/ M" [7 o6 Z; y" C* f
                        System.out.println(arg[i]);
; i# U  y. M) C5 `4 D" [- c
$ K9 r3 |" p: ]% m8 |                }2 }& O8 H6 f0 ]' U5 w# n" n  a

, R) f! u/ r/ u1 f& i9 s0 h. C9 U    8 j' {& c2 Y; _" F  g7 j/ \

  L; ?9 L1 W8 M) R5 Q    }
) U  ]7 _" k  `9 O; H/ {% J! D2 z1 w
+ c5 w" E1 C; ]2 O
( }9 x: x$ ]. {% \- e# t+ g  H5 d" E$ Q0 N+ R
3 L; ]1 Y+ ^! f5 b% s: i9 K/ r" j
' X8 ]- a" @, k
}
人平

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

  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 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

返回列表