首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
#include<iostream> using namespace std;在C++中这两句是什么意思?
#include<iostream> using namespace std; void f(int &m,int n) { int temp; temp=m; m=n; n=temp; } int main() { int a=5,b=10; f(a,b); cout<<a<<" "<<b<<endl; return 0; }
默认分类
| 2015-10-01 17:40 |
阅读 1730 次
|
评论 1 条
小温馨的博客
小温馨
浏览1729次
文章分类
默认分类(1)
文章归档
2015年10月(1)
最新评论
zj547877350
:std是一个命名空间