1895不会
定义两个变量
输入它们
for循环初值设为a+1,结束的值设为b
判断i是否能整除2,i%2==0,如果能输出i
int a,b;
cin>>a>>b;
for(int i=a+1;i<=b;i++){
if(i%2==0){
cout<<i<<" ";
}