/*
题干:将1~5的这5个数相乘,得出相乘的积。
思路:一、1~5这5个数是变化的不确定的他们相乘以后的积也是不确定的。
所以定义两个变量。
二、因为这5个数要不断的增加而必须在1<=&5=>这个区域,所以用
while循环。
*/
public class da
{
public static void main(String[]args)
{ int x=1;
int a=0;
while(x<=5)
{ x++;
a=x*(x+1);
a++;
}
System.out.print("a="+a);
}
}
class Demo_12{
public static void main(String [] args){
int [] arr = {1,2,3,4,5,};
int s = getProduct(arr);
System.out.println(s);
}
public static int getProduct(int [] a){
int product = 1;
for (int i =0; i<a.length; i++){
product= product*a[i];
}
return product;
}
}