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
~89 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for m2185

I am working on a problem where I must show all perfect integers between 1 and 1000, as well as the divisors to get them. I can get the integers just fine with this code: [code]#include <iostream> using namespace std; void Perfect(int); int main() { for (int i = 1; …

Member Avatar for Ancient Dragon
0
89