Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int x, y;
- int main()
- {
- cout << "wprowadz pierwsza liczbe: " << endl;
- cin >> x;
- cout << "wprowadz druga liczbe: " << endl;
- cin >> y;
- if (x > y) cout << "wieksza liczba to: " << x << endl;
- else cout << "wieksza liczba to: " << y << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment