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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 史世锋 中级黑马   /  2015-9-7 22:20  /  302 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

class Fortest2
{
        public static void main(String[] args)
        {
                /*
                打印图案:
                *****
                ****
                ***
                **
                *
                */
                //int z=5;
                for(int x=5;x>0;x--)
                {
                        for(int y=1;y<=x;y++)
                        {
                                System.out.print("*");
                        }
                        System.out.print('\n');
                //  z--;
                }
                System.out.println("-------------------");

                /*
                打印图案:
                *
                **
                ***
                ****
                *****
                */

                //z=1;
                for(int x=1;x<=5;x++)
                {
                        for(int y=1;y<=x;y++)
                        {
                                System.out.print("*");
                        }
                //        z++;
                        System.out.print('\n');
                }
                System.out.println("-------------------");
                /*
                打印:
                1
                12
                123
                1234
                12345
                */

                for(int x=1;x<=5;x++)
                {
                        for(int y=1;y<=x;y++)
                        {
                                System.out.print(y);
                        }
                        System.out.println();
                }
                System.out.println("-------------------");
                /*
                打印:
                1*1=1
                1*2=2 2*2=4
                1*3=3 2*3=6 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 个回复

倒序浏览
乘法表容易,各种图形就不会了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马