返回列表 發帖

Java 基礎架構與輸出入

本帖最後由 b790113g 於 2011-12-10 11:31 編輯
" ^3 }% u1 o  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 處一定要跟檔名相同

public class tom1210
6 S' J/ V! U9 w& a8 d, [' C7 y- v( v2 m
{
5 Z5 ?# D1 _* }
8 W" i9 _# H5 V1 `4 J    public static void main(String[]arg)) c& r/ m/ k- q0 J' E8 c, f- ~

( d/ n; f: B1 o" H/ L) J  \        {% V4 [; y- C' E

( s  A, j2 V- c* S                for(int i=0;i<arg.length;i++)5 q1 p% a& K" s: D# @) ?

% V& i3 r% G+ @0 Y$ U                {
2 ~& x: ~6 H& z& m
  m3 ^! [- s/ o. @! Z+ [1 u- D                        System.out.println(arg[i]);
# m: `; s' u5 w1 X+ a3 R5 G4 S* }* h
                }
. q9 ]" R. z* q- F+ K" ]) H3 J: D# L! b5 P. J
    ' `8 [3 N$ O& i8 b/ J

- g+ S# R% s& S2 c    }
# y" c: x. R$ T) r) S( \" w
) z$ x) t- I, a" z/ d1 g
0 _* D$ C1 v+ N. v3 e8 D# k4 g) x. a) n

% P# {& d+ @' d
5 r/ W( G  U. S5 ^% }! B' O3 w}
人平

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

  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 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

返回列表