Advertisement
Guest User

Untitled

a guest
Jan 17th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main(){
  5. int N;
  6. cin>>N;
  7. if(1<=N<=12,N<=2)
  8. cout<<"Winter"<<endl;
  9. else if(3<=N<=4,N<=5)
  10. cout<<"Spring"<<endl;
  11. else if(6<=N<=7,N<=8)
  12. cout<<"Summer"<<endl;
  13. else
  14. cout<<"Autumn"<<endl;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement