Computer Science, asked by lokswetha1913, 1 year ago

Write a program in C++ to print the prime numbers between 100-200

Answers

Answered by ahmadmahmood033
2

1 3 5 7 11 13

Prime Number Program

Now Start This

#include <iostream>

using namespace std;

int main()

{

int n=5;

for(int i=1;i<=5;i++)

{ cout<<" "<<(2*i-1);

}

return 0;

}

Similar questions