返回列表 發帖

Java 基礎架構與輸出入

本帖最後由 b790113g 於 2011-12-10 11:31 編輯 6 V+ o  P$ S7 V, t/ p
  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; m; M# Q& C1 Z: S6 Z9 q' r

. c- C" ?( F( l8 y5 X7 I5 z{; t- e+ R1 ^& H  d  H

7 k1 R% |; d+ d8 E. U    public static void main(String[]arg)# g+ W# v; g, @

3 b/ H3 k! c6 T$ v  ~        {: R, Q% `: X% W% E
$ B( y, A$ D& ]% o5 P' N. u
                for(int i=0;i<arg.length;i++)
: H6 u  N; ?: ~& G7 Z3 N+ ~" B8 U
$ D1 v: n- a+ A                {" v$ N7 p0 K3 {0 ~/ H" p( G

4 Z* V2 E; s5 K                        System.out.println(arg[i]);$ H5 d, `. }, {' B5 C& A2 ^

7 e1 A4 u" u( ?$ G7 V4 U                }
* O. A. O, i2 Q
7 z* {+ ?; b: s& [    4 A- i7 I2 R7 G4 r9 ^) t8 t

1 M5 w+ t! {  Y  i( \' |& w/ [1 D    }
8 o9 b: {8 ?5 V4 x2 Z1 ]5 W, u( j2 P4 Z# V; K7 U# I
: N% E, ^; h. P& f3 a8 x( z+ m& ^
3 N) c4 t' d7 q) y

. x5 M; I! W5 a5 k$ Z' u2 u5 N6 j3 L1 n8 y8 O0 l" {* g: y
}
人平

TOP

返回列表