Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
lab7_OOP 0.2 beta
/*Compilation time: 0.13 sec, absolute running time: 0.14 sec, cpu time: 0 sec, memory peak: 3 Mb, absolute service time: 0.38 sec*/ #include <stdlib.h> #include <stdio.h> #include <math.h> #include <float.h> double f1 (double x, double t) { if (x != 0.0) { return cos(t/x) - 2.0*sin(1.0/x) + 1.0/x; } else { printf("Помилка. Ділення на нуль. f1(%lf, %lf)\n", x, t); exit(-1); } } double newton (double (*f)(double, double), double a, double b, double t, double eps ) { if (f != NULL) { double x = b; double delta = DBL_MAX; int iterations = 0; for (; fabs(delta) >= eps && iterations <= 1000; ++iterations) { double diff = (f(x + 1e-10, t)-f(x, t))/1e-10; if (diff != 0.0) { delta = f(x, t)/diff; x -= delta; } else { printf("Помилка. Похідна дорівнює нулю. newton(%p, %lf, %lf, %lf, %lf)\n", f, a, b, t, eps); exit(-1); } } if (iterations > 1000) { printf("Помилка. Кількість ітерацій перевищила 1000. newton(%p, %lf, %lf, %lf, %lf)\n", f, a, b, t, eps); exit(-1); } return x; } else { printf("Помилка. Нульовий покажчик на функцію. newton(%p, %lf, %lf, %lf, %lf)\n", f, a, b, t, eps); exit(-1); } } int main(void) { double a = 0.0; double b = 0.0; double t = 0.0; double eps = 0.0; scanf("%lf", &a); scanf("%lf", &b); scanf("%lf", &t); scanf("%lf", &eps); int choice_equation = 0; /*Вибір рівняння*/ scanf("%d", &chois_equation); /**/ int choice_method = 0; /*Вибір методу розвязку*/ scanf("%d", &chois_equation); /**/ printf("%lf", ) return 0; }
run
|
edit
|
history
|
help
0
Numero pi Euler
Es un rectangulo
funny stack overflow
Vzdalenost
Triples bucles anidados
CV09-2
Hello World C
Eukleidova algoritmu
cv3
Bucles: Rombo asimetrico