Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cmath>
- //SPECYFIKACJA
- //dane: a,b,c funkcji liniowej; wspolrzedne x i y punktu;
- //wynik: odleglosc od prostej punktu
- using namespace std;
- float odl(float x0, float y0, float a, float b, float c )
- {
- double d= (abs(a*x0+b*y0+c))/sqrt(pow(a,2)+pow(b,2));
- return d;
- }
- int main()
- {
- float v,b,n;
- cout<< "podaj wspolczynniki a,b,c: "<<endl;
- cin>>v;
- cin>>b;
- cin>>n;
- float x,y;
- cout << "Podaj wspolrzedna x= ";
- cin>>x;
- cout << "Podaj wspolrzedna y= ";
- cin>>y;
- cout<<""<<odl(x,y,v,b,n)<<endl;
- return 0;
- }
Add Comment
Please, Sign In to add comment