Posts
 
Reputation
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
~2K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for theoryforlife

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); } …

Member Avatar for Lukas_1
0
2K

The End.