연속 부분 최대곱

문제

문제

소스 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
public class MAX{
public static double[] nums = {1.1, 0.7, 1.3, 0.9, 1.4, 0.8, 0.7, 1.4};
public static void main(String[] args){
float max = 1;
for(int i = 0; i < nums.length; i++){
if(nums[i] > 1){
float m = 1;
for(int j = 0; j < nums.length - i; j++){
m *= nums[i + j];
if(max < m){
max = m;
}
}
}
}
System.out.println(max);
}
}
Share Comments