返回列表 發帖

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. }
複製代碼

  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. }
複製代碼
離離草原上
一歲一枯榮
野火燒不盡
春風吹又生

TOP

返回列表