//Half problem: recursive #include using namespace std; void half(int n) { if(n>0) { cout<>num; half(num); system("pause"); return 0; } //main