Answer:
You will need to implement a for loop ( I am assuming this is java)
Step-by-step explanation:
int count20s = 0;
for(int x =0; x< customerAges.length;x++){
if(20 <= customerAges[x] && customerAges[x] <= 29){
count20s++;
}
5.2m questions
6.8m answers