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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

class  aa
{
        public static void main(String[] args)
        {       
                bb(7,7);
                System.out.println("---------------");
                bb(6,6);
        }
               
                public static void bb(int a,int b)
        {       
                for(int x=0;x<a;x++);
                {
                        for(int y=0;y<b;y++);
                        {
                                System.out.print("*");
                        }
                        System.out.println();
                }
               
        }
}
为什么我的这个代码运行之后  无法赋值给a b    显示的的只有一个*号  ???

评分

参与人数 1黑马币 +15 收起 理由
杨志 + 15 楼主继续加油!

查看全部评分

6 个回复

倒序浏览
class  aa
{
        public static void main(String[] args)
        {       
                bb(7,7);
                aa();
                bb(6,6);
        }
               
                public static void bb(int a,int b)
        {       
                for(int x=0;x<a;x++);
                {
                        for(int y=0;y<b;y++);
                        {
                                System.out.print("*");
                        }
                        System.out.println();
                }
               
        }
        public static void aa()
        {
                System.out.println("---------------");
        }
               
}
横线的函数就能够调用
回复 使用道具 举报
下面两个for循环后边都不能有分号
class  aa
{
        public static void main(String[] args)
        {        
                bb(7,7);
                System.out.println("---------------");
                bb(6,6);
        }
               
                public static void bb(int a,int b)
        {        
                for(int x=0;x<a;x++);
                {
                        for(int y=0;y<b;y++);
                        {
                                System.out.print("*");
                        }
                        System.out.println();
                }
               
        }
}
回复 使用道具 举报
因为你for循环后面加了分号
回复 使用道具 举报
谢谢    以解决
回复 使用道具 举报
没人会笑你的,兄弟,谁要笑,就让他们大声笑!
回复 使用道具 举报
刘欢 中级黑马 2012-8-12 10:52:51
7#
哥们没事,我也发过这样的问题。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马