Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.73K
1 Posted Topic
for people that are coming later here is a solution that might help, you take this: void printStarBucks (int n){ printStars(n); printBucks(n); } void printStars (int n){ if (n > 0){ cout << "*"; printStars (n-1); } } void printBucks(int n){ if (n > 0){ cout << "$"; printBucks(n-1); } …
The End.
Lukas_1