Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <stdio.h>
- #include <math.h>
- using namespace std;
- int main()
- {
- /*
- dodawanie: +
- odejmowanie: -
- mnożenie: *
- dzielenie: /
- modulo: %
- potęga (power): pow(podstawa, wykładnik)
- pierwiastek kwadratowy: sqrt(liczba_pierwiastkowana)
- square root
- */
- // int a;
- // int b;
- // cout << "Podaj liczbe a: ";
- // cin >> a;
- // cout << "Podaj liczbe b: ";
- // cin >> b;
- // if(a > b)
- // {
- // cout << "a jest wieksze niz b" << endl;
- // }
- // if(a < b)
- // {
- // cout << "a jest mniejsze niz b" << endl;
- // }
- // if(a >= b)
- // {
- // cout << "a jest wieksze lub rowne niz b" << endl;
- // }
- // if(a <= b)
- // {
- // cout << "a jest mniejsze lub rowne niz b" << endl;
- // }
- // if(a == b)
- // {
- // cout << "a jest równe b" << endl;
- // }
- // if(a != b)
- // {
- // cout << "a jest różne od b" << endl;
- // }
- const float CENA_BILETU = 25;
- float portfel;
- cout << "Ile masz kasy: ";
- cin >> portfel;
- if(portfel >= CENA_BILETU)
- {
- cout << "Mozesz kupic bilet" << endl;
- }
- else
- {
- cout << "Brakuje Ci " << CENA_BILETU - portfel << endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement