728x90
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | #include <stdio.h> int main() { int i; scanf("%d", &i); switch (i) { case 12: case 1: case 2: printf("winter"); break; case 3: case 4: case 5: printf("spring"); break; case 6: case 7: case 8: printf("summer"); break; case 9: case 10: case 11: printf("fall"); break; } return 0; } | cs |
728x90
'Study > code up' 카테고리의 다른 글
[codeup] 1072 : [기초-반복실행구조] 정수 입력받아 계속 출력하기 (0) | 2019.07.23 |
---|---|
[codeup] 1071 : [기초-반복실행구조] 0 입력될 때까지 무한 출력하기1 (0) | 2019.07.23 |
[codeup] 1069 : [기초-조건/선택실행구조] 평가 입력받아 다르게 출력하기 (0) | 2019.07.23 |
[codeup] 1068 : [기초-조건/선택실행구조] 정수 한 개 입력받아 평가 출력하기 (0) | 2019.07.23 |
[codeup] 1067 : [기초-조건/선택실행구조] 정수 한 개 입력받아 분석하기 (0) | 2019.07.23 |