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
#include <iostream> using namespace std; void prime_num(int); //Desgin: Rafea Fheely int main() { cout << " Enter a number and I will generate the prime numbers up to that number: "; int num = 0; cin >> num; prime_num(num); } void prime_num( int num) { bool isPrime=true; for ( int …
The End.
rafea fheely