Answer to Question #56422 in C++ for raneem

Question #56422
Write a program that asks the user to enter a positive number then displays all numbers
less or equal to it that are prime each one a separate line.
1
Expert's answer
2015-11-19T04:17:08-0500
#include <iostream>
#include <math.h>
using namespace std;
int main (){
int n = 0;
int divisor =2;
cout<<"Please input a positive number n = ";
cin>>n;
for( int i=3;i<=n;i++){
for ( int j = divisor;j<=(round(0.5*i)+1);j++){
if ((i%j)==0) break;
if (j==round(0.5*i)+1) cout<<i<<endl;
}
}
cout<<"Program Finished";
return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS