josiftepe

Untitled

Nov 22nd, 2020
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int a;
  8.     int b;
  9.     int x=0;
  10.     cin>>a;
  11.     cin>>b;
  12.     ///a*x+b=0
  13.     ///x=-b/a
  14.     if((a==0)and(b==0)){
  15.         cout<<"ima beskonecno resenija";
  16.     }
  17.     if((a==0)and(b!=0)){
  18.         cout<<"nema resenie ";
  19.     }
  20.     else{
  21.      cout<<-b/a;
  22.     }
  23.     return 0;
  24. }
  25.  
Advertisement
Add Comment
Please, Sign In to add comment