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.55K
~184 People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for ultrAslan

Probably too late... but when you make the call n.Multiply(n); you are violating the repeated parameter rule by using n twice in this operation. If p > 0, you should make a copy of n then multiply n by n_copy. n.Copy_To(n_copy); n.Multiply(n_copy); Power(n, p-1);

Member Avatar for siddhant3s
0
184

The End.