Line 13: There's no income parameter inside your main, so your parameter for your howMuchAMonths() is incorrect. You have the function askAnnualIncome() which returns a value, so you can use that as your parameter.
double howMuchAMonths(double income) you can change it to a void, because it seems unnecessary for the function to return a double value since you're just outputting the results.