package pritice4;
public class Searchcount {
public static void main(String[] args) {
// 找出100到1000之间可以被5和6整除的数
final int PRIME = 100;//定义最开始的数
final int LAST = 1000;//定义最终的数
final int LINE = 10;//line个数以后换行
int i,count = 0;
for(i=PRIME;i<=LAST;i++)
{
if((i%5 == 0)&&(i%6 == 0))
{
System.out.print(i+" ");
count++;
if(count%LINE == 0)
System.out.println();
}
}
}
}
public class Searchcount {
public static void main(String[] args) {
// 找出100到1000之间可以被5和6整除的数
final int PRIME = 100;//定义最开始的数
final int LAST = 1000;//定义最终的数
final int LINE = 10;//line个数以后换行
int i,count = 0;
for(i=PRIME;i<=LAST;i++)
{
if((i%5 == 0)&&(i%6 == 0))
{
System.out.print(i+" ");
count++;
if(count%LINE == 0)
System.out.println();
}
}
}
}