回复 8楼 枫叶照耀
我初始化了啊 你看看啊
回复 9楼 embed_xuel
额 明白了
#include <stdio.h> void smap(int *a,int *b){ int temp; temp=*a; *a=*b; *b=temp; cout<<*a<<endl; cout<<*b<<endl; }; void main(){ int c,d; cin>>c>>d; smap(&c,&d); }针,所以根本交换不了你输入的值。另外不建议这样写程序这样main显得过于臃肿,建议你写一个函数完成这个小功能。