Малко помощ в C++
Къде бъркам ?
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
cout<<"Enter n=";
double f,n,x;
cin>>n;
for(x = -3.2; x <= 2.4; x += 0.1);
{
f=1+n*x/3+(n-1)*pow(x,2)/5;
cout<<f<<endl;
}
}
Къде бъркам ?
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
cout<<"Enter n=";
double f,n,x;
cin>>n;
for(x = -3.2; x <= 2.4; x += 0.1);
{
f=1+n*x/3+(n-1)*pow(x,2)/5;
cout<<f<<endl;
}
}
В края на реда след for() цикъла има точка и запетая, махни я и ще тръгне
for(x = -3.2; x <= 2.4; x += 0.1); <- тук не се слага точка и запетая