Forward Difference Table- C++ Program

//Forward Difference Table

#include
#include
using namespace std;
int main()
{
    cout.precision(2);        //set precision
    cout.setf(ios::fixed);    
    int i=0,j=0,n,k;
    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];
    cout<<"\nEnter the values of y\n";
    for (i=0;i>y[i][0];
    for (j=1;j
Sample Output
Sample Output
[wpedon id="7041" align="center"]

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.