#include <iostream> #include <bits/stdc++.h> using namespace std; int main() { int a,f,i,j,k,l,t,m; cin>>...
Read More
Home / Archive for February 2016
C Graphics In Codeblocks
At First Download CodeBlocks-EP Version From This Link http://codeblocks.codecutter.org/setup.exe Now Install And Click File>New&g...
Read More
How To Make A Web Browser In JavaFx (Netbeans)
Download Full Project https://drive.google.com/file/d/0B4aZYdPLCIUYUWt0UHFZa3R3a0U/view?usp=sharing
Read More
Lagrange Interpolation Method C++
#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++
#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++
#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++
#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++
#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++
#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++
#include <bits/stdc++.h> #include <iostream> using namespace std; double value(double A ,double B,double C,double x) { ...
Read More
Subscribe to:
Posts
(
Atom
)