Advertisement
drakon-firestone

Untitled

Oct 2nd, 2024
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <math.h>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.  
  10. /*
  11. dodawanie: +
  12. odejmowanie: -
  13. mnożenie: *
  14. dzielenie: /
  15. modulo: %
  16.  
  17.  
  18.  
  19. potęga (power): pow(podstawa, wykładnik)
  20. pierwiastek kwadratowy: sqrt(liczba_pierwiastkowana)
  21. square root
  22. */
  23.  
  24. int a;
  25. int b;
  26.  
  27. cout << "Podaj liczbe a: ";
  28. cin >> a;
  29. cout << "Podaj liczbe b: ";
  30. cin >> b;
  31.  
  32. if(a > b)
  33. {
  34. cout << "a jest wieksze niz b" << endl;
  35. }
  36.  
  37.  
  38. return 0;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement