Advertisement
MeehoweCK

Untitled

Jan 7th, 2021
884
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int najwieksza(int a, int b, int c)
  6. {
  7.     if(a >= b && a >= c)
  8.         return a;
  9.     if(b >= a && b >= c)
  10.         return b;
  11.     return c;
  12. }
  13.  
  14. int main()
  15. {
  16.     cout << "Wpisz trzy liczby, ktore chcesz porownac: ";
  17.     int x, y, z;
  18.     cin >> x >> y >> z;
  19.     cout << "Najwieksza z wpisanych liczb to " << najwieksza(x,y,z) << endl;
  20.     return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement