返回列表 發帖

Java 基礎架構與輸出入

本帖最後由 b790113g 於 2011-12-10 11:31 編輯 ! ~) J, S  I, z9 E5 ^; _
  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
0 l- b0 h  a7 ~2 C) H* u  V% x. N# ^1 ]. Y9 \$ {: K
{
9 L- W  K0 C+ B/ d: r* O6 L; `; I+ Y7 |  m' g. e! b4 i
    public static void main(String[]arg)
9 b9 C! P5 S+ [2 I/ n# ?" g7 K+ q1 {+ n
        {
9 V: o8 D& W, k, u; S9 G! k. `5 y5 B9 h' p
                for(int i=0;i<arg.length;i++)
9 z. w$ Y/ c5 {6 x- y, @* K( g$ K! o0 A( k: _! M* E
                {
" h$ V! ]* N. o. x# Q. H9 |1 Q1 ^: f$ B; l5 ^1 ^3 u0 m
                        System.out.println(arg[i]);
. q6 n" S- k$ N4 X% O1 ]9 i4 R/ ?
3 B  d* A4 B! z2 a# q: O& W                }
- q  Y) u" R% {6 b3 M2 P+ K* M" z; G1 L' N/ E
    " f3 x3 h/ h3 i7 w0 b! ^. M  C9 l+ i
& T9 u, r* X6 Y7 \
    }* D4 `2 g$ L" R5 _2 u  _9 Y

$ ~! w% i0 q9 B  {$ [# s4 L  v$ D
/ f" I7 N) m7 U0 o, ?
1 H2 Y! n) O* Y) |5 V9 l' @: `  x7 M; D% t& J# _3 s) Q/ o  s
1 k! l" A8 V: N' @: ]
}
人平

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

返回列表