注意:此页面搜索的是所有试题
以下程序输出的结果是:
#include "stdio.h"

void main()

{int a=12,b=13;

a=a+b;

b=a-b;

a=a-b;

printf("%d,%d",a,b);

}

参考答案