返回列表 發帖

Java 基礎架構與輸出入

本帖最後由 b790113g 於 2011-12-10 11:31 編輯 2 R# X- W4 X7 f  l, ~
  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
( ~/ Q, }. I8 A$ g* H1 Z$ p+ g( a5 j  I8 L
{2 S4 Q) z. V/ B7 z8 ^
& G0 O) j, z/ \3 y
    public static void main(String[]arg)7 i; X. [1 |2 d% |  r% _" h
  k3 N2 c! k- }% }; ^* P
        {6 i) y* c" g( l1 R4 Y- ?

& `3 q4 \3 h! ]" w- G                for(int i=0;i<arg.length;i++)8 L4 ~& w6 o, w5 A/ C1 ^% u5 |

1 y3 b/ K4 C# S' R  b+ S                {- C- N9 f% J! z7 v

- w) p$ ^6 M  j+ {8 E5 N! B3 r' n$ M                        System.out.println(arg[i]);
6 t( \# {3 w# A: c6 p! O# I' A% F( Y1 d! m
                }, l/ b4 x, ]- N  F
8 o3 x3 C5 D1 {8 t+ Q
    ! d; w8 y: G& u% J! _

6 h' {3 X/ o! A  y2 U/ t    }
- z6 _  b3 w1 ~% I& t& S: ]1 h9 l7 w+ b* Y: w
! L2 _. G  x: s
# G& P6 M' S/ A
  h8 u5 ]) {8 C2 r5 |

1 f. j5 K4 c( Y, |, X' B& E}
人平

TOP

返回列表