class lianxi
{
public static void main(String[] args)
{
int [] temp = new int [15];//取多个数要用数组先存起来,这里有个瑕疵,无法确定数组长度,不过尽量大一些,如果想更好的话,定个函数获取出有几个数
int sum=0;
for (int x=0,y=0;x<=100 ;x++ )
{
if (x%7==0)
{
temp[y++]=x;//存到数组里面
sum=sum+x;
}
}
System.out.println(sum);
//遍历数组
for (int z=0;z<temp.length ;z++ )
{
if(temp[z]!=0)//避免打印值为0的出现,这是昨天在论坛里学的
System.out.print(temp[z]+"\t");
}
}
} |