Modify the FizzBuzz program developed in Week Two to only allow input of a comma separated list of values. Create a function that will convert the input string into a vector of integers. The function must look like this:
vector loadVector(string inputString)
Write another function that will output the results of processing the vector of integers against the FizzBuzz rules defined in week 2. Display the output according to the rules in the Week 2 assignment. The function should look like this:
void processVector(vector intVector)
Add an exception handler using try/catch to handle any unexpected errors.