Print series basic


what is wrong in code?
why not take remaining numbers?

@AjayRRJ
n1-- should be inside the loop.

int main() {
int n1,n2;
cin>>n1>>n2;
int i=1;
while(n1>0)
{
    if((3*i+2)%n2!=0)
    {
        cout<<3*i+2<<endl;
        n1--;
    }
    i++;
    
}
return 0;    

}

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.