c语言:设一个函数,调用它时,每次实现不同的功能:(1)求两个数之和;(2)求两个数之差;(3)求

2024-11-30 11:53:51
推荐回答(4个)
回答1:

#include
void add(int a, int b)
{
int c = a + b;
printf(" %d + %d = %d\n", a,b,c);
}
void sub(int a, int b)
{
int c = a - b;
printf(" %d - %d = %d\n", a,b,c);
}

void mul(int a, int b)
{
int c = a * b;
printf(" %d * %d = %d\n", a,b,c);
}
void process(int a, int b)
{
add(a, b);
sub(a, b);
mul(a, b);
}
int main()
{
int a, b;
printf("请输入两个数: ");
scanf("%d%d", &a, &b);
printf("他们的和是: %d\n", a + b);
printf("他们的差是: %d\n", a - b);
printf("他们的积是: %d\n", a * b);
process(a,b);
}

回答2:

代码如下:

#include
using namespace std;
// 加法的模板函数
template
T Add(T a, T b)
{
return (a + b);
}
// 测试函数
int main()
{
// 显式
cout<<"显式调用:"<int ia = 1, ib = 2, ic = 0;
ic = Add(ia, ib);
cout<float fa = 1.1f, fb = 2.2f, fc = 0.0f;
fc = Add(fa, fb);
cout<

回答3:

#include

float add( float x, float y );
float sub( float x, float y );
float mul( float x, float y );
float process( float x, float y, char mode );
void clear();

int main( )
{
do{
printf( " Enter mode[+、- or * , 0 to exit ]: " );
char mode;
scanf( " %c", &mode );
if( '0' == mode ) break;
clear();

printf( " Enter x and y: " );
float x , y;
scanf( " %f %f", &x, &y );
printf( " %f %c %f = %f\n\n", x, mode, y, process( x, y, mode ) );
clear();
}while( 1 );

return 0;
}

float add( float x, float y )
{
return x + y;
}
float sub( float x, float y )
{
return x - y;
}
float mul( float x, float y )
{
return x * y;
}
float process( float x, float y, char mode )
{
switch mode :
case '+' : return add( x, y );
case '-' : return sub( x, y );
case '*' : return mul( x, y );
default : return -1;
}

void clear()
{
while( getchar() != '\n' );
}

回答4:

你只要在主函数处设置一个计数变量记录调用次数。根据次数决定在process函数调用哪个功能函数。