将两个数的值交换 时间:2016-03-08 11:51:27 【文件属性】: 文件名称:将两个数的值交换 文件大小:136B 文件格式:CPP 更新时间:2016-03-08 11:51:27 交换数值 #include int main(void) { int a,b,c; a=1; b=2; c=a; a=b; b=c; printf("%d,%d\n",a,b); return 0; } 立即下载