Advertisement
MeehoweCK

Untitled

Aug 21st, 2019
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 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 << najwieksza(3, 7, 15) << endl;
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement