Break/Continue For C++
#include <iostream>
using namespace std;
int main()
{
int input;
int i=1;
cout<<"please pick a number from 1-100, and add 1 to ur number that ur thinking of to get the number u want \n";
cin>>input;
while(i<input){
i++;
if(i%2==0){
continue;
}
if (i>50){
break;
}
cout<<"the number is "<< i <<"\n";
};
}