注意:此页面搜索的是所有试题
题目内容
(许昌学院面向对象程序设计)
[应用题,25分] #include
void f(int *p1, int *p2)
{ int *t;
t=p1;p1=p2;p2=t;
}
main()
{ int a=10,b=20;
cout<<><>
f(&a,&b);
cout<<><>
}
void f(int *p1, int *p2)
{ int *t;
t=p1;p1=p2;p2=t;
}
main()
{ int a=10,b=20;
cout<<><>
f(&a,&b);
cout<<><>
}
参考答案