GO 언어: Data Types : Numbers, Strings, Boolean (3)
2021. 3. 9. 21:18ㆍgolang
728x90
반응형
Data Types
Numbers, Strings, Boolean
package main
import (
"fmt"
)
func main() {
fmt.Println("Addition 덧셈")
fmt.Println("1 + 3 =", 1+3)
fmt.Println("1.0 + 3.0 =", 1.0+3.0)
fmt.Println("Substraction 뺄셈")
fmt.Println("1 - 3 =", 1-3)
fmt.Println("1.0 - 3.0 =", 1.0-3.0)
fmt.Println("Multiplication 곱셈")
fmt.Println("1 * 3 =", 1*3)
fmt.Println("1.0 * 3.0 =", 1.0*3.0)
fmt.Println("Division 나눗")
fmt.Println("1 / 3 =", 1/3)
fmt.Println("1.0 / 3.0 =", 1.0/3.0)
fmt.Println("Remainder 나머지")
fmt.Println("1 % 3 =", 1%3)
//fmt.Println("1.0 % 3.0 =", 1.0%3.0) 오류
fmt.Println(len("Hello World"))
fmt.Println("Hello World"[0])
fmt.Println("Hello " + "World")
fmt.Println(true && true)
fmt.Println(true && false)
fmt.Println(true || true)
fmt.Println(true || false)
fmt.Println(!true)
}
BOOLEAN 예시
true && true -> true
true && false -> false
false && true -> false
false && false -> false
Expression
true || true -> true
true || false -> true
false || true -> true
false || false -> false
!true -> false
!false -> true
Value
반응형
'golang' 카테고리의 다른 글
GO 언어: names 명명 규칙 (4) (0) | 2021.03.10 |
---|---|
GO 언어: Hello World 예제 os.Exit() (2) (0) | 2021.03.09 |
GO 언어: Hello World 예제 (1) (0) | 2021.02.23 |
GO 언어 개발환경 세팅 (golang Setting Up a Development Environment) (0) | 2021.02.18 |
GO 언어 설치(golang installation Window/MAC) (0) | 2021.02.17 |