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;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement