返回列表 發帖

Java 基礎架構與輸出入

本帖最後由 b790113g 於 2011-12-10 11:31 編輯 ' J+ `& r6 m9 j0 O( z) g6 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 tom12105 q6 r$ x5 \1 A* ^5 A' X4 `
0 w8 Q& \5 |% `- `0 S$ X: F
{; ^7 ?  y: b$ c4 s# O( B9 H

6 Y3 [+ W7 x; d: I    public static void main(String[]arg)" f, r& K' x5 s2 h; @; b" J9 B4 t9 P

9 w- h! Y: x& U8 x# R0 O1 Q- J        {
3 X3 f9 m/ f0 }2 K# q/ F/ b, t5 Z6 s
                for(int i=0;i<arg.length;i++)4 u/ l! Q, A) q
: {7 q; @/ M- H
                {
! w& r4 m/ D0 Y4 H* I+ e: b/ V: b2 g* o) x+ B: @/ w: f: d( Z+ w
                        System.out.println(arg[i]);
/ h8 ~1 _3 p, D* l1 J$ u2 J, p5 a* P5 G* ~  M
                }, h# w% G- L  d; R+ S. A# Q. R# F3 t

. ]: A& S+ L$ e, t9 L* n7 r; t   
/ u4 m0 I) {3 M: e1 {/ z/ b% Z4 R# Q
    }
+ a' V  c, V4 }% W) _: O* i$ p6 w2 Y* P2 m. I+ G
! A7 L, J) p) u
+ z) \* w* _* D! I) z2 E! D- N' q
0 t3 B( E0 [! p

0 I1 P, p  ?$ J/ V! Z3 r}
人平

TOP

返回列表