Practice. Recursion




Task
Исправьте рекурсивную процедуру таким образом, чтобы вывод осуществлялся в обратном порядке. 

Hello N 10

Hello N 1
Prohibited operators:for;while;until
C++
1
#include <iostream>           
2
using namespace std;    
3
void LoopImitation(int i, int n) {           
4
5
6
7
}           
8
main(){           
9
    LoopImitation(1,10);           
10
}           
Your last submission is saved in the editor window.
     

Results:

All results: