Autor Wiadomość
Ricko
PostWysłany: Śro 11:32, 24 Kwi 2013    Temat postu: STUDIA: Funkcja złożona

Cytat:
#include <cstdlib>
#include <iostream>
#include <cmath>

using namespace std;

int main(int argc, char *argv[])
{
double x;
cout<<"Program obliczajacy wartosc funkcji"<<endl<<endl;
cout<<" x^2+3x+2, gdy x<-1"<<endl
<<"f(x)=-x^2+1, gdy -1<=x<1"<<endl
<<" x^2-3x+2, gdy x>=1"<<endl<<endl;
cout<<"Podaj x"<<endl<<"x=";
cin>>x;

if (x<-1)
cout<<"f("<<x<<")="<<pow(x,2)+3*x+2<<endl;
else
{
if (x>=1)
cout<<"f("<<x<<")="<<pow(x,2)-3*x+2<<endl;
else
cout<<"f("<<x<<")="<<-pow(x,2)+1<<endl;
}

system("PAUSE");
return EXIT_SUCCESS;
}

Powered by phpBB © 2001,2002 phpBB Group