-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPsychometricTesting.java
50 lines (37 loc) · 1.37 KB
/
PsychometricTesting.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
import java.util.Scanner;
public class PsychometricTesting{
public static void main(String []args){
Scanner in = new Scanner(System.in);
int iScore = in.nextInt();
int[] arrscore = new int[iScore];
for(int i=0; i< iScore; i++) {
arrscore[i] = in.nextInt();
}
int iLowerLimit = in.nextInt();
int[] arrLowerLimit = new int[iLowerLimit];
for(int i=0; i< iLowerLimit; i++) {
arrLowerLimit[i] = in.nextInt();
}
int iUpperLimit = in.nextInt();
int[] arrUpperLimit = new int[iUpperLimit];
for(int i=0; i< iUpperLimit; i++) {
arrUpperLimit[i] = in.nextInt();
}
int[] result = jobOffers(arrscore, arrLowerLimit, arrUpperLimit);
for(int i =0; i<result.length; i++) {
System.out.println(result[i]);
}
}
static int[] jobOffers(int[] scores, int[] lowerLimits, int[] upperLimits) {
int[] result = new int[lowerLimits.length];
for(int i =0; i< scores.length; i++) {
int currNo = scores[i];
for(int j =0; j < lowerLimits.length; j++) {
if(currNo >= lowerLimits[j] && currNo <= upperLimits[j]) {
result[j] += 1;
}
}
}
return result;
}
}