#include<iostream> using namespace std;在C++中这两句是什么意思?

#include<iostream> using namespace std; void f(int &amp;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 | 阅读 1660 次 | 评论 1 条
文章分类
文章归档