正在加载图片...
清华大学出版社 TSINGHUA UNIVERSITY PRESS 。例14.6错误的程序。 #include <iostream.h> void swap(int a,int b) int temp; temp=a; a=b; b=temp; /实现a和b的值互换 void main() fint i=3,j=5; swap(i,j); cout长<i<<","<j<<end;i和i的值未互换 • 例14.6 错误的程序。 #include <iostream.h> void swap(int a, int b) {int temp; temp=a; a=b; b=temp; //实现a和b的值互换 } void main( ) {int i=3,j=5; swap(i,j); cout<<i<<","<<j<<endl; //i和j的值未互换 }
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有