UVA-488 Triangular Wave Add Comment Edit #include <iostream> #include <bits/stdc++.h> using namespace std; int main() { int a,f,i,j,k,l,t,m; cin>>... Read More
C Graphics In Codeblocks Add Comment Edit At First Download CodeBlocks-EP Version From This Link http://codeblocks.codecutter.org/setup.exe Now Install And Click File>New... Read More
How To Make A Web Browser In JavaFx (Netbeans) Add Comment Edit Download Full Project https://drive.google.com/file/d/0B4aZYdPLCIUYUWt0UHFZa3R3a0U/view?usp=sharing Read More
Lagrange Interpolation Method C++ Add Comment Edit #include<iostream> #include<bits/stdc++.h> using namespace std; int main() { double a[10],b[10]; int n,i,j; ... Read More
Gauss Central Difference C++ Add Comment Edit #include <iostream> #include<bits/stdc++.h> using namespace std; int main() { double y[50][50],x[50]; int n,i,... Read More
Newton Interpolation Forward C++ Add Comment Edit #include <iostream> #include<bits/stdc++.h> using namespace std; int fact(int k) { int l,f=1; for(l=1;l<=k;l... Read More
Ramanujan Method C++ Add Comment Edit #include<bits/stdc++.h> using namespace std; double arr1[100]; double arr2[100]; double DIV[100]; double find_B(int n) { ... Read More
Generalized Newton Rapshon Method C++ Add Comment Edit #include<bits/stdc++.h> using namespace std; double x,y,z; double func1(double x) { return (pow(x,3)-pow(x,2)-x+1); } double... Read More
Iteration And Newton Rapshon Method C++ Add Comment Edit #include <bits/stdc++.h> using namespace std; double f(double x) { return (sqrt(2+(5/x))); } int iteration() { doub... Read More
Bisection And False Position Method C++ Add Comment Edit #include <bits/stdc++.h> #include <iostream> using namespace std; double value(double A ,double B,double C,double x) { ... Read More