fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int temperatura;
  6. temperatura = 38;
  7. if(temperatura>38){
  8. cout<<"iDe do szkołe"<<'\n';
  9. ++temperatura;
  10. cout<<temperatura;
  11. }
  12. else if(temperatura == 38){
  13. cout<<"na granicy";
  14. }
  15. else if (temperatura == 24){
  16. cout<<"każdy wers to 24 karaty suko";
  17. }
  18.  
  19. return 0;
  20.  
  21. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
na granicy