C++菜鸟啊,,,程序提示: error C2064: 项不会计算为接受 2 个参数的函数
#include"stdafx.h"#include<iostream>usingnamespacestd;voidh(int*p1,int*p2){intp;p=*p1...
#include "stdafx.h"
#include<iostream>
using namespace std;
void h(int *p1,int *p2)
{
int p;
p=*p1;
*p1=*p2;
*p2=p;
}
int _tmain(int argc, _TCHAR* argv[])
{ int a, b,h ;
cout<<"请输入两个整数"<<endl;
cin>>a>>b;
h(a,b);
cout<<a<<' '<<b<<endl;
return 0;
} 展开
#include<iostream>
using namespace std;
void h(int *p1,int *p2)
{
int p;
p=*p1;
*p1=*p2;
*p2=p;
}
int _tmain(int argc, _TCHAR* argv[])
{ int a, b,h ;
cout<<"请输入两个整数"<<endl;
cin>>a>>b;
h(a,b);
cout<<a<<' '<<b<<endl;
return 0;
} 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询