编写程序,输出1到500之间,所以可以被5整除,又能被3整除的数

用JAVA语言程序编写
2024-11-06 09:39:50
推荐回答(5个)
回答(1):

public class test
{
public static void main(String[] args)
{
for(int i = 1;i <= 500;i++)
{
if(i%3 == 0 && i%5 == 0)
System.out.println(i);
}
}
}
或者,如果你只是想输出,也可以用下面的方法:
public class test
{
public static void main(String[] args)
{
int i = 15;
while( i <= 500)
{
System.out.println(i);
i += 15;
}
}
}

回答(2):

class a
{
public static void main(String[] args)
{
int i;
for(i=1;i<=500;i++)
{
if(i%3==0 && i%5==0)
System.out.println(i);
}
}
}

回答(3):

public class Test {
public static void main(String[] args) {
for(int i=1;i<=500;i++)if(((i % 3)==0) && ((i%5)==0))System.out.println(i);
}
}

回答(4):

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package testgraphics;

/**
*
* @author zz
*/
public class Test {
public static void main(String[] args) {
for(int i=1;i<=500;i++)if(((i % 3)==0) && ((i%5)==0))System.out.println(i);
}
}

回答(5):

for(int p=0;p<501;p++){
if(p%3==0&p%5==0){
System.out.println(p);
}
}