GO 언어: Data Types : Numbers, Strings, Boolean (3)
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.Pri..
2021.03.09