A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

class ForforDemo
{
        public static void main(String[] args)
        {
                /*
                打印图形
                *******
                 *****
                  ***
                   *
                */
/*
                for(int x=1;x<=4;x++)
                {       
                        for(int m=1;m<x;m++)
                        {
                                System.out.print(" ");
                        }

                        for(int y=4;y>=x;y--)
                        {
                                System.out.print("*");
                        }
                        for(int n=3;n>=x;n--)
                        {
                                System.out.print("*");
                        }
                        System.out.println();

                }
        */
        /*打印九九乘法表
        1*1=1
        1*2=2        2*2=2
        1*3=3        2*3=3        3*3=9
        ...
        */
        for(int x=1;x<=9;x++)
        {
                for(int y=1;y<=x;y++)
               
                        System.out.print(y+"*"+x+"="+x*y+"\t");
               
                System.out.println();
        }

        }
}

1 个回复

倒序浏览
学习了                        
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马