Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- C언어
- working set
- OculusMotionVectorPass
- 가상 바이트
- Three(Two) Tone Shading
- Virtual Byte
- 벡터
- VR
- 프로그래밍 기초
- URP로 변경
- Windows Build
- 3d
- Cell Look
- ColorGradingLutPass
- Cell Shader
- Private Bytes
- 개인 바이트
- 게임 수학
- ASW(Application SpaceWarp)
- 작업 집합
- 메모리 누수
- AppSW
- URP
- Cartoon Rendering
- Specular
- Rim Light
- Toon Shader
Archives
- Today
- Total
WinCNT
C 언어 - 05. 조건문 본문
SWITCH문 예제
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
int main(void)
{
printf("월을 입력하세요. ");
int month;
scanf_s("%d", &month);
switch (month)
{
case 1 :
case 2 :
case 3 :
printf("봄\n");
break;
case 4:
case 5:
case 6:
printf("여름\n");
break;
case 7:
case 8:
case 9:
printf("가을\n");
break;
case 10:
case 11:
case 12:
printf("겨울\n");
break;
default:
break;
}
system("pause");
return 0;
}
'Study > C' 카테고리의 다른 글
C 언어 - 07. 함수 (0) | 2021.08.03 |
---|---|
C 언어 - 06. 반복문 (0) | 2021.08.02 |
C 언어 - 04. 연산자 (0) | 2021.08.01 |
C 언어 - 03. 기본 입출력 (0) | 2021.07.31 |
C 언어 - 02. 변수와 상수 (0) | 2021.07.29 |