Ricko
Brain
Dołączył: 07 Sie 2006
Posty: 3255
Przeczytał: 0 tematów
Pomógł: 5 razy Ostrzeżeń: 0/5 Skąd: ..::Zabrze::..
|
Wysł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;
}
|
Post został pochwalony 0 razy
|
|