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
1 Respuesta
0
The program is correct for positive numbers. What this program should do?