Computer Science A - 11/30/99 Directions: Using recursion, find the sum of the value from 1 to the integer parameter. Assume the parameter is greater than 1. (Ordinary recursion) int countUp(int number) { if(number == 0) return 0; else return (number + countUp(number - 1)); }