Computer Science A - 12/9/99 int power(int base, int exponent) { if(exponent == 1) return base; else return (base * power(base, exponent - 1)); }