黑马程序员技术交流社区
标题:
刚学for循环自己搞的需求,看有没有更好的实现方法。
[打印本页]
作者:
sandra_bae
时间:
2015-4-29 23:01
标题:
刚学for循环自己搞的需求,看有没有更好的实现方法。
/*
求出1~100之间,即使3又是7的倍数出现的次数?并打印。
*/
class ForTest9
{
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);
}
}
复制代码
作者:
青皮核桃
时间:
2015-4-29 23:08
:victory::):o:#
作者:
linda2906881980
时间:
2015-4-29 23:09
好难哦 大神真厉害
作者:
xiao7181jun
时间:
2015-4-29 23:13
即使3又是7的倍数。 你可以直接换成 x%21==0
作者:
linda2906881980
时间:
2015-4-29 23:22
class TestDemo1
{
public static void main(String[] args)
{
int count = 1;
for (int x = 21;x <= 100 ;x*=2 )
{
count++;
}
System.out.println(count);
}
}
作者:
linda2906881980
时间:
2015-4-29 23:24
加油加油加油
作者:
rightyuan521
时间:
2015-4-29 23:35
for循环效率稍高,没必要使用其他语句再做
作者:
rightyuan521
时间:
2015-4-29 23:36
加油,加油,加油!
作者:
linda2906881980
时间:
2015-4-29 23:38
class TestDemo1
{
public static void main(String[] args)
{
int count = 0;
for (int x = 21;x <= 100 ;x+=21 )
{
count++;
}
System.out.println(count);
}
作者:
li514620797
时间:
2015-4-29 23:42
求即是3的倍数也是7的倍数的个数
作者:
LPStone
时间:
2015-4-29 23:47
加油哦!!!!!!
作者:
li514620797
时间:
2015-4-29 23:48
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);
}
}
作者:
LPStone
时间:
2015-4-29 23:48
厉害呦!!!
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2