Board logo

標題: 回家作業 tqc101-102 [打印本頁]

作者: b790113g    時間: 2012-5-12 11:55     標題: 回家作業 tqc101-102

回家先製作1015 l5 S) l, c+ m5 w0 \: }
做完再做1027 W& E+ F6 I3 I. v) Y2 c
2 ^0 U- s) h; t
並上傳在這邊
作者: kim    時間: 2012-5-14 20:57

本帖最後由 kim 於 2012-5-14 20:59 編輯
$ \2 L2 |8 B/ a
& @* s$ p. i1 s" H( A9 c% U- cTQC101
  1. public class TQC101
  2. {
  3.         public static void main(String[] arg)
  4.         {
  5.                 int r[]=new int[42];
  6.                 for(int i=0;i<42;i++)
  7.                 {
  8.                         r[i]=i+1;
  9.                 }
  10.                 for(int i=0;i<42;i++)
  11.                 {
  12.                         int rr=(int)(Math.random()*42);
  13.                         int t=r[i];
  14.                         r[i]=r[rr];
  15.                         r[rr]=t;
  16.                 }
  17.                 for(int i=0;i<6;i++)
  18.                 {
  19.                         System.out.printf("第%d個號碼:%02d\n",i+1,r[i]);
  20.                 }
  21.                 System.out.printf("特別號:%02d\n",r[6]);
  22.         }
  23. }
複製代碼

作者: kim    時間: 2012-5-14 20:59

TQC102
  1. import java.util.*;
  2. import java.text.*;
  3. public class TQC102
  4. {
  5.         public static void main(String[] arg)
  6.         {

  7.                 Date d=Calendar.getInstance().getTime();
  8.                 SimpleDateFormat sdf1=new SimpleDateFormat("yyyy/M/d a hh:mm");
  9.                 SimpleDateFormat sdf2=new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
  10.                 SimpleDateFormat sdf3=new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
  11.                 SimpleDateFormat sdf4=new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
  12.                 System.out.println(sdf1.format(d));
  13.                 System.out.println(sdf2.format(d));
  14.                 System.out.println(sdf3.format(d));
  15.                 System.out.println(sdf4.format(d));
  16.         }
  17. }
複製代碼

作者: johnson    時間: 2012-5-16 13:30

  1. public class TQC101
  2. {
  3.         public static void main(String[] arg)
  4.         {
  5.                 int r[]=new int[42];
  6.                 for(int i=0;i<42;i++)
  7.                 {
  8.                         r[i]=i+1;
  9.                 }
  10.                 for(int i=0;i<42;i++)
  11.                 {
  12.                         int rr=(int)(Math.random()*42);
  13.                         int t=r[i];
  14.                         r[i]=r[rr];
  15.                         r[rr]=t;
  16.                 }
  17.                 for(int i=0;i<6;i++)
  18.                 {
  19.                         System.out.printf("第%d個號碼:%02d\n",i+1,r[i]);
  20.                 }
  21.                 System.out.printf("特別號:%02d\n",r[6]);
  22.         }
  23. }
複製代碼
  1. import java.util.*;
  2. import java.text.*;
  3. public class TQC102
  4. {
  5.         public static void main(String[] arg)
  6.         {

  7.                 Date d=Calendar.getInstance().getTime();
  8.                 SimpleDateFormat sdf1=new SimpleDateFormat("yyyy/M/d a hh:mm");
  9.                 SimpleDateFormat sdf2=new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
  10.                 SimpleDateFormat sdf3=new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
  11.                 SimpleDateFormat sdf4=new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
  12.                 System.out.println(sdf1.format(d));
  13.                 System.out.println(sdf2.format(d));
  14.                 System.out.println(sdf3.format(d));
  15.                 System.out.println(sdf4.format(d));
  16.         }
  17. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2