Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Teylor
#include <stdio.h> float teylor (float x) { float a = x; float s = 0.f; float n = 1.f; while (fabs(a) >= 1E-37f ) { s += a; n += 1.f; a = -a*x*x/((2.f*n-2.f)*(2.f*n-1.f)); } return s; } int main() { for (float i = 0.f; i <= 360.f; i += 1.f) printf("%.5f %.5f\n", i, teylor(i*3.14159265359f/180.f)); }
run
|
edit
|
history
|
help
0
Vectores: Burbuja ordenación
Bubles: secuencia descenciente de números
VKI_Mihalyk_3_3
VKI_Mihalyk_3_2
Bucles: Mayor de n números hasta teclear 0
Lazy dope vectors by Henry Kroll III www.thenerdshow.com
Vectores: buscar valor en array
Bucles: suma impares menores que N
Hello World C
Kód