码迷,mamicode.com
首页 > 其他好文 > 详细

全局变量的例子

时间:2017-07-05 16:37:36      阅读:126      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!