fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int temperatura;
  6.  
  7. cout<<"vnsete temperatura"<<endl;
  8. cin>>temperatura;
  9.  
  10.  
  11. if(temperatura>0)
  12. cout<<"STUDENO E"<<endl;
  13. if(temperatura<=20)
  14. cout<<"UMERENO E"<<endl;
  15. if(temperatura>=20)
  16. cout<<"TOPLO E"<<endl;
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 5284KB
stdin
999
stdout
vnsete temperatura
STUDENO E
TOPLO E