-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEx4_ComputerFirm.java
66 lines (41 loc) · 1.66 KB
/
Ex4_ComputerFirm.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package Original_Exam_1;
import java.util.Scanner;
public class Ex4_ComputerFirm {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int n = Integer.parseInt(scanner.nextLine());
double sales = 0.0;
double all = 0.0;
// int rating = Integer.parseInt(scanner.nextLine());
for (int rating = 0; rating < n ; rating++) {
rating = Integer.parseInt(scanner.nextLine());
if (rating % 10 == 0){
double possibleSales = rating - (rating * 0.02);
sales += possibleSales;
} else if (rating % 100 == 0) {
double possibleSales = rating - (rating * 0.50);
sales += possibleSales;
} else if (rating % 1000 == 0) {
double possibleSales = rating - (rating * 0.70);
sales += possibleSales;
} else if (rating % 10000 == 0) {
double possibleSales = rating - (rating * 0.85);
sales += possibleSales;
} else if (rating % 100000 == 0) {
double possibleSales = rating - (rating * 1.0);
sales += possibleSales;
}
all = sales / n;
}
System.out.printf("%.2f", sales);
System.out.printf("%.2f", all);
}
}
//
//int n = Integer.parseInt(scanner.nextLine()); // моделите компютри
// int sum = 0;
// for (int number = 1; number <= n ; number++) {
// int value = Integer.parseInt(scanner.nextLine());
// sum = sum + value;
// }
// System.out.println(sum);