第23084题 判断
判断以下C++代码执行后是否输出3*2=6
int a=2, b = 3;
a=a-b;
b=a+b;
a=b-a;
printf("%d*%d=%d\n", a, b, a*b);
A

正确

B

错误

C
D
程序运行统计
暂无判题统计