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.

Expert's answer

#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;
}
LATEST TUTORIALS
APPROVED BY CLIENTS