Board logo

標題: 復習108 [打印本頁]

作者: jerryclass    時間: 2012-7-7 11:22     標題: 復習108

九九乘法表
作者: kim    時間: 2012-7-7 11:23

  1. public class TQC108 {

  2.         /**
  3.          * @param args
  4.          */
  5.         public static void main(String[] args) {
  6.                 // TODO Auto-generated method stub
  7.                 for(int j=1;j<=9;j++)
  8.                 {
  9.                         for(int i=1;i<=9;i++)
  10.                         {
  11.                                 System.out.printf("%d*%d=%d\t",j,i,j*i);
  12.                         }
  13.                         System.out.println();
  14.                 }
  15.         }

  16. }
複製代碼

作者: johnson    時間: 2012-7-7 11:23

  1. public class TQC108
  2. {
  3.         public static void main(String[] args)
  4.         {
  5.                 for(int i=1;i<=9;i++)
  6.                 {
  7.                         for(int j=1;j<=9;j++)
  8.                         {
  9.                                 System.out.printf("%d*%d=%d\t",i,j,i*j);
  10.                         }
  11.                 }
  12.                 System.out.println();
  13.         }
  14. }
複製代碼

作者: 許逸瑋    時間: 2012-7-7 11:26

  1. import java.lang.*;

  2. public class TQC108
  3. {
  4.   public static void main(String[] args)                                         
  5.   {
  6.    for(int i = 1 ; i< 10 ; i++){
  7.       for(int j = 1 ; j <10 ; j++)
  8.          System.out.print(""+i+"*"+j+"="+(i*j)+"\t");
  9.       System.out.println();
  10.    }
  11.   }
  12. }
複製代碼





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