fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int month;
  5. scanf("%d", &month);
  6.  
  7. if (month >= 3 && month <= 5) {
  8. printf("봄\n");
  9. } else if (month >= 6 && month <= 8) {
  10. printf("여름\n");
  11. } else if (month >= 9 && month <= 11) {
  12. printf("가을\n");
  13. } else if (month == 12 || (month >= 1 && month <= 2)) {
  14. printf("겨울\n");
  15. } else {
  16. printf("잘못 입력하셨습니다.\n");
  17. }
  18. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
잘못 입력하셨습니다.