标签:ret std code bsp nbsp 例子 main ios pac
1 #include<iostream>
2 using namespace std;
3 int a=0; int b=0;
4 void exchange(){
5 int p;
6 if(a<b){
7
8 p=a;
9 a=b;
10 b=p;
11
12 }
13 }
14
15 int main(){
16 cin>>a>>b;
17 exchange();
18 cout<<a<<""<<b<<endl;
19 return 0;
20
21
22
23 }
标签:ret std code bsp nbsp 例子 main ios pac
原文地址:http://www.cnblogs.com/cmycoder/p/7121834.html