|
#include "Cartesian System.h"
#include "cmath"
using namespace std;
double f (double x);
double g (double x);
int main ()
{
Cartesian System grid;
return 0;
}
double f (double x)
{
return x * sin (x);
}
double g (double x)
{
return x;
}
#include "Cartesian System.h"
Compiling, error is not opening #include "Cartesian System.h"
Why?
Thank you! |
|