logo

Crowdly

Browser

Add to Chrome

Що обчислює цю функцію: double func (double x, int n) { if (n == 0) return...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Що обчислює цю функцію:

double func (double x, int n) {

if (n == 0) return 1;

if (x == 0) return 0;

if (n> 0) return x * func (x, n-1);

if (n <0) return func (x, n + 1) / x;

}

(C++)

0%
0%
0%
0%
More questions like this

Want instant access to all verified answers on moodle.chnu.edu.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome