Курсовая работа: Дослідження чисельних методів вирішення нелінійних рівнянь
printf(" Enter the accuracy : ");
scanf("%f", &e);
printf("\n-------------------------Chord's method--------------\n");
for (int i = -20; i < 20; i++)
if (chords(i, i+1, res, iter))
printf("\n x= %f (%d iterations)\n", res, iter);
printf("\n-------------- Nuton's method----------------------\n");
res = Nuton(-2, iter);
printf("\n x= %f (%d iterations)\n", res, iter);
res = Nuton(0, iter);
printf("\n x= %f (%d iterations)\n", res, iter);
res = Nuton(2, iter);
printf("\n x= %f (%d iterations)\n", res, iter);
getch();
return 0;
}