Advertisement
Guest User

kurats

a guest
Feb 9th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.44 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main ()
  4. {
  5.     int A,B,C;
  6.     cout<<"Vnesi vrednost za agol A"<< endl;
  7.     cin>>A;
  8.  
  9.     if (A>0 && A<90)
  10.       cout<<"Agolot e ostar"<< endl;
  11.         else
  12.         {
  13.          if (A==90)
  14.             cout<<"Agolot e prav"<< endl;
  15.         else
  16.         if (A>90 && A<=179)
  17.                     cout<<"Agolot e tap"<< endl;
  18.         else
  19.             cout<<" STO E BE NE SI DOBAR";
  20.         }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement