C语言.编写程序,根据用户输入的x和y值来计算xy的值。要求编写power(x,y)函数,来实

如题所述

第1个回答  2011-04-19
#include <stdio.h>

power(float a,float b)
{
float sum1=a*b;
return sum1;
}

void main()
{
float x,y;
float sum;
printf("input the first number:\n");
scanf("%f",&x);
printf("input the second number:\n");
scanf("%f",&y);
sum=power(x,y);
printf("xy is %f\n",sum);

}

发完了才看到如楼上的差不多,呵呵
第2个回答  2011-04-18
#include <stdio.h>

power(float a,float b)
{
float sum1=a*b;
return sum1;
}

int main()
{
float x,y;
float sum;
printf("input the first number:\n");
scanf("%f",&x);
printf("input the second number:\n");
scanf("%f",&y);
sum=power(x,y);
printf("xy is %f\n",sum);

return 0;
}

编译通过本回答被网友采纳
第3个回答  2011-04-18
看来是刚开始学习的新生 慢慢就会发现很简单了

C语言.编写程序,根据用户输入的x和y值来计算xy的值。要求编写power(x,y...
void main(){ float x,y;float sum;printf("input the first number:\\n");scanf("%f",&x);printf("input the second number:\\n");scanf("%f",&y);sum=power(x,y);printf("xy is %f\\n",sum);} 发完了才看到如楼上的差不多,呵呵 ...

PHP的其他方面
9);\/\/x=8andy=9缺省参数使用C++的方式,所以你不能忽略Y的值,而给X一个缺省参数,参数是从左到右赋值的,如果传入的参数少于要求的参数时,其作的将使用缺省参数。

相似回答