//Backward Difference
#include
#include
using namespace std;
int main()
{
cout.precision(5); //set precision
cout.setf(ios::fixed);
int i=0,j=0,n,k=0;
cout<<"\nEnter the number of values to be entered.\n";
cin>>n;
double x[n], y[n][n]; //make an array for x values and an nxn matrix for y and successive difference values, where y[n][0] is for the the y values
cout<<"\nEnter the values of x\n";
for (i=0;i>x[i]; //input x values
cout<<"\nEnter the values of y\n";
for (i=0;i>y[i][0]; //input y values in the first column of y matrix
for (j=1;j

PhD researcher at Friedrich-Schiller University Jena, Germany. I'm a physicist specializing in theoretical, computational and experimental condensed matter physics. I like to develop Physics related apps and softwares from time to time. Can code in most of the popular languages. Like to share my knowledge in Physics and applications using this Blog and a YouTube channel.
Like this:
Like Loading...
Related
[wpedon id="7041" align="center"]