0

Hello) Can anyone help me please) I am beginner. Thank you very much)

void F( int n) { cout<<n; if (n<6) { F(n+2); F(n*3); } } How make it to work when calling F (1) Recursion

15th Apr 2020, 10:43 AM
Anastation
1 Odpowiedź
0
The program is correct for positive numbers. What this program should do?
15th Apr 2020, 10:48 AM
Stephan
Stephan - avatar