- #include <iostream>
- using namespace std;
- void swap(int m,int n)
- {int temp=m;m=n;n=temp;}
- int main()
- {
- int a=5,b=10;
- cout<<"交换前a、b的值为:"<<"a="<<a<<"b="<<b;
- swap (a,b);
- cout<<"交换后a、b的值为:"<<"a="<<a<<"b="<<b;
- return 0;
- }
- #include <iostream>
- using namespace std;
- void swap(int m,int n)
- {int temp=m;m=n;n=temp;}
- int main()
- {
- int a=5,b=10;
- cout<<"交换前a、b的值为:"<<"a="<<a<<"b="<<b;
- swap (a,b);
- cout<<"交换后a、b的值为:"<<"a="<<a<<"b="<<b;
- return 0;
- }
Scratch3.0 全国青少年软件编程等级考试 Python Scratch图形化一级 Scratch图形化四级 Scratch图形化三级 Scratch图形化二级 电子学会