如果用3個自訂涵式
做出F(X)=X*X+3x+5
第一個是輸入函式
第二個呼叫求解
第3個輸出的解
好難 想了很久不會做!
2007-12-09 06:32:26 · 1 個解答 · 發問者 Anonymous in 電腦與網際網路 ➔ 程式設計
//Power by Visual Studio 2005
//Download Site: http://www.microsoft.com/taiwan/vstudio/express/
//2007.dec.6.
#include
#include
#include
double first(double X){
return pow(X,2)+3*X+5;
}
void third(double Y){
printf("Output= %lf\n",Y);
}
void second(){
double x,y;
printf("Input X: "),scanf("%lf",&x);
y=first(x);
third(y);
}
int main(int argc, char* argv[]){
//=====START=====//
second();
//=====END=====//
system("PAUSE");
return 0;
}
2007-12-09 06:56:54 · answer #1 · answered by Big_John-tw 7 · 0⤊ 0⤋