Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include <iostream>

using namespace std;


int a,b,s,x;
int main()
{cout<<"a=";cin>>a;
cout<<"b=";cin>>b;
if(a>b)
{s=a;
a=b;
b=s;
}
for(x=a;a>=b;x--)
if(x%2==0)
cout<<"x=";cout<<x;
}

You might also like