Advertisement
rootuss

rownanie liniowe

Oct 30th, 2016
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     float a, b;
  8.     cout << "Podaj a, b" << endl;
  9.  
  10.     cin>>a>>b;
  11.  
  12.  
  13.     if(a==0)
  14.     {
  15.         if (b==0)
  16.         {
  17.             cout<<"Nieskończenie wiele rozwiazan!" <<endl;
  18.         }
  19.         else cout<<"Brak rozwiazan!"<<endl;
  20.  
  21.     }
  22.  
  23.         else
  24.         {
  25.             float x;
  26.             x= -b/a;
  27.             cout<<x<<endl;
  28.         }
  29.     return 0;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement