Guest User

Untitled

a guest
Jan 24th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <iostream>
  4.  
  5. using namespace std;
  6.  
  7. int main(int argc, char *argv[])
  8. {
  9.   int a,b,c;
  10.   cout<<"Podaj a,b,c: \n";
  11.   cin>>a;
  12.   cin>>b;
  13.   cin>>c;
  14.   cout<<"\n Twoj wynik to:" ;
  15.   cout<<(a>b?(a>c? a:c):b>c? b:c);
  16.   cout<<"\n \n";
  17.   system("PAUSE");
  18.   return 0;
  19. }
Add Comment
Please, Sign In to add comment