Answer:
statClass.java
Explanation:
You use the classname of the public class.
One of those will contain main()
Note that this example has a typo. statClass vs startClass.
#include <iostream>
#include <vector>
#define NUM_GUESSES 3
int main()
{
std::vector<int> userGuesses;
for (int i = 0, input; i < NUM_GUESSES; i++)
{
std::cin >> input;
userGuesses.push_back(input);
}
}