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