2 回答
TA贡献1893条经验 获得超10个赞
int _tmain(int argc, _TCHAR* argv[])
{
void process();//====仔细看我这个
process();
return 0;
}
void process()
{
int a,b;int c;
void max(int a,int b,int *c); //====仔细看我这个
void min(int a,int b,int *c);//====仔细看我这个
void add(int a,int b,int *c);//====仔细看我这个
void plus(int a,int b,int *c);//====仔细看我这个
printf("please input a,b:");
TA贡献1803条经验 获得超3个赞
process函数里面不能再定义函数了
#include<stdio.h>
int process();
int max(int a,int b,int *c);
int min(int a,int b,int *c);
int add(int a,int b,int *c);
int plus(int a,int b,int *c);
printf("please input a,b:");
void main()
{
process();
}
void process()
{
int a,b;int c;
scanf("%d%d",&a,&b);
max(a,b,&c);
printf("%d\n",c);
min(a,b,&c);
printf("%d\n",c);
add(a,b,&c);
printf("%d\n",c);
plus(a,b,&c);
printf("%d\n",c);
}
void max(int n,int m,int *t)
{
if(n>m)
*t=n;
else *t=m;
}
void min(int n,int m,int *t)
{
if(n<m)
*t=n;
else *t=m;
}
void add(int n,int m,int *t)
{
*t=n+m;
}
void plus(int n,int m,int *t)
{
if(n>m)
*t=n-m;
else *t=m-n;
}
- 2 回答
- 0 关注
- 347 浏览
添加回答
举报