logo

Crowdly

Browser

Add to Chrome

Що виконує дана рекурсивна функція? int func (int n1, int n2) { if (n1 >...

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

Що виконує дана рекурсивна функція?

int func (int n1, int n2) {

if (n1 > n2) {

return 0;

} else {

return n1 + func(n1 + 1, n2);

}

}

More questions like this

Want instant access to all verified answers on exam.nuwm.edu.ua?

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

Browser

Add to Chrome