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