Advertisement
MeehoweCK

Untitled

Oct 26th, 2020
784
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 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.     int wynik = najwieksza(312, 1054, 778);
  17.     cout << wynik << endl;
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement