返回列表 發帖

Java 基礎架構與輸出入

本帖最後由 b790113g 於 2011-12-10 11:31 編輯
, D, A$ ^' m% C( W9 Z: e& K
  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
# d: f7 }+ B: k3 V! H4 v
3 B$ @* o3 \: g% o0 b{
. \7 N% @% R3 V% Y; g7 m1 H4 q, K- n3 Q% q" K/ E/ V
    public static void main(String[]arg)9 b2 i/ F8 X, e% i, K9 N
. h/ [- H2 Y9 Z5 k+ C/ d
        {
' y( @" C2 b. Z6 @& h2 P) C0 }
$ S" H! j* x, n/ t- i5 J5 g* {                for(int i=0;i<arg.length;i++)
, i' q& R# L( h0 Y5 ?4 L
3 t6 i& O$ [7 F) |1 f9 c& @                {
+ R5 C( c* O- A/ o" p2 L6 _: [7 v
9 B  j' R" L; R# u' _) V' [+ H                        System.out.println(arg[i]);( M) d/ b: r% i% P

: M! G' ]* [3 O4 w+ c                }1 b1 h1 S$ z& [* @$ b# G, T2 N

& v7 [9 y2 G$ a$ H0 U1 G   
/ I5 C$ x( s3 m7 }* A0 w* U* w* X. N: `, \
    }. |8 @% |( g4 f6 b, m
, C& X3 J4 `9 Z

7 {. q4 X" L2 `' u
4 G6 {9 S$ ^" k2 A
3 W' Y1 V9 F4 ]/ \% ~3 Z/ k
. o0 C& Q" S% b* B1 r}
人平

TOP

返回列表