fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int m;
  6.  
  7. m=1;
  8.  
  9. switch(m)
  10. {
  11. case 1:cout<<"зима"<<endl;
  12. break;
  13. case 2:cout<<"весна"<<endl;
  14. break;
  15. case 3:cout<<"лето"<<endl;
  16. break;
  17. case 4:cout<<"осень"<<endl;
  18. }
  19. return 0;
  20. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
зима