Тема: Функція
Невірна функція хто може переписати програму або вказати недоліки цієї?
#include <iostream.h>
#include <conio.h>
#include <math.h>
float f(float x)
{
float f1;
for(int i=0; i<5; i++)
{
f=f+pow(x,pow(2,i))+5*cos(pow(x,i));
}
return f1;
}
int main()
{ float x1,x2,x3,y;
clrscr();
cout<<endl;
cout<<" Objislennia function "<<endl;
cout<<endl;
cout<<" Vvedity znachennia x1: ";
cin>>x1;
cout<<" Vvedity znachennia x2: ";
cin>>x2;
cout<<" Vvedity znachennia x3: ";
cin>>x3;
//=====================================
y=(f(x1)+f(x2))/f(x3);
cout<<" y= "<<y;
getch();
return 0;
}