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
- 독후감
- 파이썬
- Linux
- 파이썬 시각화
- 리눅스
- 서평단
- 시각화
- matplotlib
- SQL
- 서평
- 월간결산
- Python
- tensorflow
- 딥러닝
- 텐서플로
- Google Analytics
- 통계학
- Blog
- 한빛미디어서평단
- 매틀랩
- 블로그
- python visualization
- 티스토리
- 한빛미디어
- Visualization
- Pandas
- MySQL
- MATLAB
- Ga
- Tistory
Archives
- Today
- Total
pbj0812의 코딩 일기
[Go] switch 본문
0. 목표
- switch 문 사용
1. 코드
- case 안에는 조건문도 사용 가능
ex) case koreaAge < 10
package main
import "fmt"
func switchTest(age int) bool {
switch koreanAge := age + 2; koreanAge {
case 10:
return false
case 18:
return true
}
return false
}
//start point
func main() {
fmt.Println(switchTest(18))
}
2. 결과
- false
3. 참고
'ComputerLanguage_Program > Go' 카테고리의 다른 글
[Go] array, slice (0) | 2020.03.13 |
---|---|
[Go] Pointer (0) | 2020.03.13 |
[Go] 조건문, variable expression (0) | 2020.03.13 |
[Go] for, range (0) | 2020.03.12 |
[Go] function (0) | 2020.03.12 |
Comments