Advertisement
drakon-firestone

Untitled

Oct 2nd, 2024
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 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. // if(a < b)
  38. // {
  39. // cout << "a jest mniejsze niz b" << endl;
  40. // }
  41.  
  42. // if(a >= b)
  43. // {
  44. // cout << "a jest wieksze lub rowne niz b" << endl;
  45. // }
  46.  
  47. // if(a <= b)
  48. // {
  49. // cout << "a jest mniejsze lub rowne niz b" << endl;
  50. // }
  51.  
  52.  
  53.  
  54. // if(a == b)
  55. // {
  56. // cout << "a jest równe b" << endl;
  57. // }
  58.  
  59. // if(a != b)
  60. // {
  61. // cout << "a jest różne od b" << endl;
  62. // }
  63.  
  64.  
  65.  
  66. const float CENA_BILETU = 25;
  67.  
  68. float portfel;
  69. cout << "Ile masz kasy: ";
  70. cin >> portfel;
  71.  
  72. if(portfel >= CENA_BILETU)
  73. {
  74. cout << "Mozesz kupic bilet" << endl;
  75. }
  76. else
  77. {
  78. cout << "Brakuje Ci " << CENA_BILETU - portfel << endl;
  79. }
  80.  
  81.  
  82. return 0;
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement