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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. /*
  2.         求出1~100之间,即使3又是7的倍数出现的次数?并打印。
  3. */

  4. class ForTest9
  5. {
  6.         public static void main(String[] args)
  7.         {
  8.                 int count = 0;
  9.                
  10.                 for(int x = 1;x <= 100; x++)
  11.                 {
  12.                         if(x%3==0 && x%7==0)
  13.                         {
  14.                                 count++;
  15.                         }
  16.                 }

  17.                 System.out.println(count);
  18.         }
  19. }
复制代码


点评

  发表于 2015-4-29 23:07

13 个回复

正序浏览
厉害呦!!!
回复 使用道具 举报
class TestDemo1
{
        public static void main(String[] args) {
                int count = 0;
        for (int x =1;x <= 100 ;x++ ){
                        if (x%3==0&&x%7==0){
                  count++;
                        }      
        }
        System.out.println(count);      
        }
}
回复 使用道具 举报
加油哦!!!!!!
回复 使用道具 举报
求即是3的倍数也是7的倍数的个数
回复 使用道具 举报
class TestDemo1
{
        public static void main(String[] args)
        {
                int count = 0;
                for (int x = 21;x <= 100 ;x+=21 )
                {
                        count++;
                       
                }
                System.out.println(count);
               
        }
回复 使用道具 举报
加油,加油,加油!
回复 使用道具 举报
for循环效率稍高,没必要使用其他语句再做
回复 使用道具 举报
加油加油加油
回复 使用道具 举报
class TestDemo1
{
        public static void main(String[] args)
        {
                int count = 1;
                for (int x = 21;x <= 100 ;x*=2 )
                {
                        count++;
                       
                }
                System.out.println(count);
               
        }
}
回复 使用道具 举报
即使3又是7的倍数。 你可以直接换成 x%21==0
回复 使用道具 举报
好难哦 大神真厉害
回复 使用道具 举报
:victory::):o:#
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马