Printing prime numbers from 1 through 100

前端 未结 22 2555
无人共我
无人共我 2020-11-28 05:14

This c++ code prints out the following prime numbers: 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97.

But I don\'t think tha

22条回答
  •  余生分开走
    2020-11-28 06:02

    To find whether no. is prime or not C++:

    #include
    #include
    
    using namespace std;
    int main(){
    
    int n, counter=0;
    
    cout <<"Enter a number to check whether it is prime or not \n";
    cin>>n;
    
      for(int i=2; i<=n-1;i++) {
        if (n%i==0) {
          cout<

提交回复
热议问题