Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int temp;
- cin >> temp;
- if (temp > 0 && temp < 100)
- {
- cout << "tecno";
- }
- if (temp <= 0)
- {
- cout << "cvrsto";
- }
- if (temp >= 100)
- {
- cout << "gasovito";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement