Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Newtons method
//gcc 5.4.0 #include <stdio.h> //Abdelghani Bellaachia, CSCI 1121 Page: 22 int main(void) { int i; double a=2; double x=1; double y; double y1; double final; do{ y=(x*x*x*x*x)-x-3; y1=5*(x*x*x*x)-1; final= x-(y/y1); ++i; printf("x%d=%lf\n",i,final); x=final; }while(i<a); }
run
|
edit
|
history
|
help
0
pth_trap.c
Collatz(3k+1)
json string formatter
Add.c
Project 4 v.6
Project 3 Part 1 v1.6
AC_setting_example
Assignment 8 pt 2
Matrix rotation 90-degree
Spring 2017 Project 2 v1