返回列表 發帖

Java 基礎架構與輸出入

本帖最後由 b790113g 於 2011-12-10 11:31 編輯 3 `  q6 ?0 C! y8 l, T9 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
0 U: M7 I% s7 n: |9 Z
2 P7 `% M( v; I; n{, f, p0 H4 ^2 ^) d. \7 i

# S9 Z* r( y0 O- G9 D$ L6 Q* c    public static void main(String[]arg)# _* R& Q8 ^" A( U/ c; z: U: W

5 L" C$ N3 c* u$ o        {
5 ~; @* W% k0 [, c8 m* D& z5 U& K
6 t4 |' s5 V, f5 m& W3 G7 g- d                for(int i=0;i<arg.length;i++)
" E/ c" f  K6 B, [
( H* D, V! o9 S! r9 g/ Z                {7 B! X' W9 P+ l6 [) R
. b! {  P$ a+ Q: M, \. @  W! M% {
                        System.out.println(arg[i]);0 e0 J& x& g+ k% G  Q$ z4 i

, k  K7 z( |2 S* |                }; {% |& j( _* o. K) A5 o

0 Q0 g. ?3 ?" E   
. c5 X, n/ T9 s* ^" L  P/ t8 C4 y1 I1 {. A6 `
    }
9 ]2 p4 x7 l$ l0 O6 o9 e4 U8 a5 L* M( `5 [+ K% ^2 a
" `4 }+ i0 |4 r7 u0 o. o; a/ B; n4 ?
, f, ^8 C! \- n9 `  m( X
2 a# Q1 H) [: Y1 A: ]

. x. t8 [+ e1 B# `}
人平

TOP

返回列表