int numberOfDivisors( int n )
{ // your function }
which will take an integer n and return how many divisors it has. Test this function first.
Write a routine to read vect.in into a vector. Test this routine.
Write a main() program that will send each element of the vector that you created in the previous paragraph to your numberOfDivisors function and keep a running tab of the biggest.