Answer:
18 teeth/inch
Explanation:
Given that: i. driver gear has 8 teeth and diametral pitch of 6 teeth/inch.
ii. follower gear has 24 teeth.
Let the followers diametral pitch be represented by x.
Then,
8 teeth ⇒ 6 teeth/inch
24 teeth ⇒ x teeth/inch
So that;
x = 
= 
= 18 teeth/inch
The diametral is 18 teeth/inch
I think it’s structural engineers but still check with the others
Answer:
import java.util.Scanner;
public class FindMatchValue {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
final int NUM_VALS = 4;
int[] userValues = new int[NUM_VALS];
int i;
int matchValue;
int numMatches = -99; // Assign numMatches with 0 before your for loop
matchValue = scnr.nextInt();
for (i = 0; i < userValues.length; ++i) {
userValues[i] = scnr.nextInt();
}
/* Your solution goes here */
numMatches = 0;
for (i = 0; i < userValues.length; ++i) {
if(userValues[i] == matchValue) {
numMatches++;
}
}
System.out.println("matchValue: " + matchValue + ", numMatches: " + numMatches);
}
}
no artical shoul be used here