摘要: 阅读下面的代码,思考代码运行结果是什么?void swap(int x,int y){int t;t =x; x=y; y=t;}void main(){int a=3, b=4;cout<<"a="<<a<<", b="<<b<<endl;swap(a, b);cout<<"a="<<a<<"... 阅读全文
posted @ 2015-10-14 14:10 薛定谔的猪 阅读(140) 评论(0) 推荐(0) 编辑