执行完下面程序片断之后,下面哪些结论是正确的? 
int a,b,c; 
a=1; 
b=2; 
c=(a+b>3 ? a++:++b);
A a的值是2,b的值是3
B a的值是1,b的值是3
C a的值是1,b的值是2
D c的值是false