How if we subtract 2 from given number while x>0. set flag=1 in while loop if x==0 found and break the while loop.
Like this :
int main()
{
int x,flag=0;
cin>>x;
do
{
x=x-2;
if(x==0)
{
flag=1;
break;
}
}while(x>0);
if(flag==1)
{
cout<<"Even";
}
else
{cout<<"ODD";}
return 0;
}
Anónimo
19 feb 2019
#include
using namespace std;
int main()
{
int n;
cout>n;
bool flag=false;
//lets do the logic
//1.even/odd logic
for(int i=2;in)
{
break;//break the loop for time complexity
}
}
}
if(flag)
{
cout<<"It is even number"<