Pseudocode for Ch9 Debugging constant int daysperyear = 365 function getage function calcdays(age) void function printresults(age, days) main function begin int age = 0 int days = 0 age = getage days = calcdays(age) printresults(age, days) getage function begin int age print "Please enter your age: " input age return age calcdays function begin (int years) int days days = years * daysperyear return days printresults function begin print age + "! Boy you are old!" *new line print "Did you know that you are at least " + days + " days old?" *new line