黑马程序员技术交流社区

标题: 求大神解惑 [打印本页]

作者: pengwei1989    时间: 2015-10-12 19:00
标题: 求大神解惑
class Test2
{
        public static void main(String[] args)
        {
                int count = 0;
               
                for (int x=101;x<=200 ;x++ )
                {
                        boolean b = true;
                        for (int y = 2;y < Math.sqrt(x);y++ )
                        {
                                if (x%y == 0)
                                {
                                        b = false;
                                        break;
                                }
                        }
                        if (b)
                        {
                                count++;
                                System.out.print(x+"\t");
                        }
                }
                System.out.print("101~200之间素数个数为:"+count);
        }
}

class Test2
{
        public static void main(String[] args)
        {
                int count = 0;
                boolean b = true;
                for (int x=101;x<=200 ;x++ )
                {
                       
                        for (int y = 2;y < Math.sqrt(x);y++ )
                        {
                                if (x%y == 0)
                                {
                                        b = false;
                                        break;
                                }
                        }
                        if (b)
                        {
                                count++;
                                System.out.print(x+"\t");
                        }
                }
                System.out.print("101~200之间素数个数为:"+count);
        }

}
       
为什么结果不一样,程序只有一处区别:程序1的boolean b = true放在for循环上面,而程序2放在for循环里面。


作者: SF_NEVERMORE    时间: 2015-10-12 19:54
放for循环外面的话,b在循环中有一次为false,就一直为false了。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2