小九九

package hello;

public class jiujiu {

    public static void main(String[] args) {
        
            int x,y;  
      
            for(x = 1;x <= 9; x++)  
            {  
                for(y = 1;y <= x; y++)  
                {  
                    System.out.print(y+"*"+x+"="+x*y+"\t");  
                }  
                System.out.println();  
            }  
        }  
 

    }

 

posted @ 2015-12-04 21:42  记忆还是空白  阅读(163)  评论(0编辑  收藏  举报