#2443. 代码填空题3

代码填空题3

代码填空,以下代码运行后,a,b,x和y的值分别是多少?

#include<iostream>
using namespace std;
int main(){
   int a,b,x,y;
   a=4;
   b=5;
   x=a++;    
   y=++b;
   cout<<a<<endl;
   cout<<b<<endl; 
   cout<<x<<endl;
   cout<<y<<endl;
}

注意:填写内容里不要加空格!!!

a: {{ input(1) }}

b: {{ input(2) }}

x: {{ input(3) }}

y: {{ input(4) }}