C語言 例題2-11定點迴路法Fixed point Method 求x^2-5=0
f(x)= x^2-5=0
g(x)=x , g(x)= ((5/x)+x)/2
#include<conio.h>
#include<stdio.h>
#include<math.h>
#define f(x) ((5/x)+x)/2
#define e 0.0001
#define MAX 100
int main(void)
{
float x0,x1,f1 ;
int i=1;
clrscr();
printf("Using Fixed Point Method / Iterative Method to find root of x^2-5=0\n");
printf("Enter value for x0\n");
printf("x0: ");
scanf("%f",&x0);
printf("steps\tx0\tx1\n");
while (i<=MAX)
{
x1=f(x0);
printf("%d\t%.4f\t%.4f\n",i,x0,x1);
if(fabs((x1-x0)/x1)<=e)
{
printf("The root is %.4f",x1);
exit(0);
}
else
{
x0=x1;
i++;
}
}
getch();
}
SDTID輸入資料
0.5 或 -5
輸出畫面
Using Fixed Point Method / Iterative Method to find root of x^2-5=0
Enter value for x0
x0: 0.5
steps x0 x1
1 0.5000 5.2500
2 5.2500 3.1012
3 3.1012 2.3567
4 2.3567 2.2392
5 2.2392 2.2361
6 2.2361 2.2361
The root is 2.2361
輸出畫面
Using Fixed Point Method / Iterative Method to find root of x^2-5=0
Enter value for x0
x0: -5
steps x0 x1
1 -5.0000 -3.0000
2 -3.0000 -2.3333
3 -2.3333 -2.2381
4 -2.2381 -2.2361
5 -2.2361 -2.2361
The root is -2.2361
訂閱:
張貼留言 (Atom)
Messaging API作為替代方案
LINE超好用功能要沒了!LINE Notify明年3月底終止服務,有什麼替代方案? LINE Notify將於2025年3月31日結束服務,官方建議改用Messaging API作為替代方案。 //CHANNEL_ACCESS_TOKEN = 'Messaging ...
-
python pip 不是内部或外部命令 -- 解決方法 要安裝 Pyqt5 1. 首先,開啟命令提示字元。 2. 輸入 pip3 install pyqt5 好像不能執行 ! ! 錯誤顯示 : ‘ pip3 ’ 不是內部或外部命令、可執行的程式或批...
-
課程講義 下載 11/20 1) PPT 下載 + 程式下載 http://www.mediafire.com/file/cru4py7e8pptfda/106%E5%8B%A4%E7%9B%8A2-1.rar 11/27 2) PPT 下載...
-
• 認 識 PreFix、InFix、PostFix PreFix(前序式):* + 1 2 + 3 4 InFix(中序式): (1+2)*(3+4) PostFix(後序式):1 2 + 3 4 + * 後 序式的運算 例如: 運算時由 後序式的...
沒有留言:
張貼留言