Board logo

標題: 108 9*9乘法表 [打印本頁]

作者: b790113g    時間: 2011-12-31 20:36     標題: 108 9*9乘法表

  1. public class test{

  2.         public static void main(String args[]){
  3.        
  4.                 //1*1 1*2 1*3 1*4 1*5
  5.                 //2*1 2*2 2*3 2*4 2*5
  6.                 //3*1 3*2 3*3 3*4 3*5
  7.                
  8.                 for(int i=1;i<10;i++){
  9.                
  10.                         for(int j=1;j<10;j++){
  11.                        
  12.                                 System.out.print(i+"*"+j+"="+i*j+"\t");
  13.                        
  14.                         }
  15.                        
  16.                         System.out.println();
  17.                
  18.                 }
  19.                
  20.                
  21.         }


  22. }
複製代碼

作者: b1081081    時間: 2012-1-6 21:00

  1. import java.util.*;
  2. import java.lang.*;
  3. public class timetable{
  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+" ");
  9.                                           }
  10.                                           System.out.print("\n");
  11.                           }

  12.           }
  13. }
複製代碼





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