Advertisement
Guest User

Untitled

a guest
Nov 27th, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. #include<iostream>
  2. #include<cstdlib>
  3.  
  4. using namespace std;
  5.  
  6. float a,b,c,sr;
  7.  
  8.  
  9. int srednia()
  10. {
  11. cout<<"Podaj pierwsza liczbe";
  12. cin>>a;
  13. cout<<"Podaj druga liczbe";
  14. cin>>b;
  15. cout<<"Podaj trzecia lcizba";
  16. cin>>c;
  17. if(a>b && a>c)
  18. {
  19. cout<<"Najwieksz liczba to "<<a;
  20. }
  21. else if (b>a && b>c)
  22. {
  23. cout<<"Najwieksz liczba to "<<b;
  24. }
  25. else if (c>a && c>b)
  26. {
  27. cout<<"Najwieksz liczba to "<<c;
  28. }
  29. else
  30. {
  31.  
  32. }
  33.  
  34. }
  35. int main()
  36. {
  37.  
  38. srednia();
  39. system("pause");
  40.  
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement