楼主自己的代码就可以实现这个功能,为啥注释掉那个输出呢?加个大括号就ok啊。
class ForTest
{
public static void main(String[] args)
{
int count =0;
for(int x=1;x<=100;x++)
{
if(x%7==0)
{
System.out.println("x="+x);
count++;
}
}
System.out.println("count="+count);
}
}
如果筛选出来的数字还有用,可以用一个数组存储。
class ForTest
{
public static void main(String[] args)
{
int count =0;
int i=0;
int[] a=new int[100];
for(int x=1;x<=100;x++)
{
if(x%7==0)
{
a[i]=x;
i++;
count++;
}
}
for(int y=0;y<count;y++)
{
System.out.println(a[y]);
}
System.out.println("count="+count);
}
}
|