新手求助!关于在主函数中调用含参自定义函数
int main(void){
Greast_Common_Divisor(p,q);
return 0;
}
int Greast_Common_Divisor(int p,int q)
{
int a,r;
if(p>0 && q>0)
{
if(p>q)
{
a=p;
q=a;
p=q;
}
r=p%q;
while(r!=0)
{
p=q;
q=r;
r=p%q;
}
return q;
}
return -1;
}
error C2065: 'p' : undeclared identifier
error C2065: 'q' : undeclared identifier
这个p和q要如何设置才能正常运行 自定义函数是实验手册上的 谢谢