Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- void Get(float& a,float& b,float& h1,float& c,float& d,float& h2)
- {
- setlocale(LC_ALL,"rus");
- cout<<"Введите нижнюю границу отрезка изменения X: ";
- cin>>a;
- cout<<"Введите верхнюю границу отрезка изменения X: ";
- cin>>b;
- cout<<"Введите шаг изменения X: ";
- cin>>h1;
- cout<<"Введите нижнюю границу отрезка изменения Y: ";
- cin>>c;
- cout<<"Введите верхнюю границу отрезка изменения Y: ";
- cin>>d;
- cout<<"Введите шаг изменения Y: ";
- cin>>h2;
- }
- void Put(float minZ)
- {
- setlocale(LC_ALL,"rus");
- cout<<endl<<"Наименьшее значение функции: "<<minZ<<endl;
- }
- float f(float x,float y)
- {
- return (x-y-x/y);
- }
- float Calc(float a, float b, float h1, float c, float d, float h2){
- setlocale(LC_ALL,"rus");
- float x,y,z;
- float minZ = -3.402823466E+38;
- cout<<endl<<"Таблица значений функции"<<endl;
- cout<<"\tx\ty\tz"<<endl;
- for(float x = a; x<=b; x+=h1){
- for(float y = c; y<=d; y+=h2){
- z = f(x,y);
- cout << "\t" << x << "\t" << y << "\t" << z << "\n";
- if(z < minZ) minZ = z;
- }
- }
- return minZ;
- }
- int main()
- {
- float a,b,h1,c,d,h2,minZ;
- Get(a,b,h1,c,d,h2);
- minZ = Calc(a, b, h1, c, d, h2);
- Put(minZ);
- system("PAUSE");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement