返回列表 發帖

Java 基礎架構與輸出入

本帖最後由 b790113g 於 2011-12-10 11:31 編輯 7 m* s' s+ M5 Y+ w' \  [
  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
/ \( \1 }7 V' W. ?# I- x. l
+ ~/ A" x) R: s, K* t& Q' l{' t% y( @6 Z2 t& J

/ [3 O+ [3 `: W3 H* E    public static void main(String[]arg)
" b; o9 Z0 L5 ~3 P* f
% Z. o$ Z/ h" K5 {- r        {
2 }% f$ y1 O8 A
% l5 s* X  k  L, v  O+ ]( Y# D                for(int i=0;i<arg.length;i++)
- R! t0 ]8 ]$ b
8 f1 S2 K$ m+ n  i$ M+ T1 ~                {  v+ z2 [" _% a2 K# Z" Y6 @1 J

" Y2 b- A' k8 c! n  p3 r                        System.out.println(arg[i]);5 I# V/ L7 n8 R; @5 U

% k1 P9 j6 v* [+ i3 f7 j4 w                }4 L5 s. {! |8 y: k6 u

. e; i! F9 I) N    * v2 u6 }$ ]( o

, Y/ M6 @# M% p. s. S& d2 ~    }  ^/ Z9 O3 C- y' R% B9 }! K
7 L9 j* z( T1 P, k$ Y) O* a1 V. M

/ z& x' u4 v- l) Z6 ?2 k1 G% b& w( f1 c% Y
7 H! m. |1 E' B( S7 {
# C$ ?$ U, S! h& v
}
人平

TOP

返回列表