问答题
以下程序输出的结果是: #include "stdio.h" void main() {int a=12,b=13; a=a+b; b=a-b; a=a-b; printf("%d,%d",a,b); }
运行结果:AC,AB