返回列表 發帖

Java 基礎架構與輸出入

本帖最後由 b790113g 於 2011-12-10 11:31 編輯 $ r& {$ P+ V. l: ?. _  M) ~$ s
  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
) v% M5 f- R4 E- Y& F0 s9 C; h
9 e5 M/ u$ O- Z2 B7 j{5 v% q( Y# j1 p7 a' k. ?; B# x3 u
' U# {; d. e6 |4 x- s; D
    public static void main(String[]arg)
7 N7 V# \) B' j) F7 [# Y: _$ M
) e2 q& M+ }9 L' [; d9 }) x3 N' k        {
8 L& {& g/ r- l  l+ d; ?9 F* `' N) b/ W- N" \: b; z/ F
                for(int i=0;i<arg.length;i++)
) @7 u6 `- i+ @( _) R  i3 r& z2 n
8 [$ y- o  |' z4 W% d; B                {% ^5 j; Z( M6 d- Q; ?5 n0 j

$ c0 e; _5 n- B4 i* m9 x; V0 n                        System.out.println(arg[i]);% }9 ]: ?' R( k9 e' b

+ ^+ `( [0 f7 H. p                }# W$ r+ \0 u. Y

9 H+ f3 l2 A! }1 I0 a# [7 r  ]   
  o# u) Y" M- J1 {3 g6 \. W
. Y1 f, o- \7 |    }
" Z8 U# K& L  e% N1 @. X4 R! k* q; o
/ R% L# `0 T! W4 y
! ?* w6 k) r; g" g) a
% {7 i/ w: }* e9 S* @; {" o# p

$ Q2 I) f1 h3 `) H, U}
人平

TOP

返回列表