program story

Golang에서 정수를 부동 수로 변환

inputbox 2020. 8. 4. 07:21
반응형

Golang에서 정수를 부동 수로 변환


정수 값을 float64유형으로 변환하는 방법

나는 시도했다

float(integer_value)

그러나 이것은 작동하지 않습니다. Golang.org 에서이 작업을 수행하는 패키지를 찾을 수 없습니다

float64정수 값에서 값을 얻는 방법은 무엇입니까?


float유형 이 없습니다 . 당신이 원하는 것 같습니다 float64. float32단 정밀도 부동 소수점 값만 필요한 경우 에도 사용할 수 있습니다 .

package main

import "fmt"

func main() {
    i := 5
    f := float64(i)
    fmt.Printf("f is %f\n", f)
}

완전성을 위해 모든 유형을 설명하는 golang 문서에 대한 링크가 있습니다 . 귀하의 경우에는 숫자 유형입니다.

uint8       the set of all unsigned  8-bit integers (0 to 255)
uint16      the set of all unsigned 16-bit integers (0 to 65535)
uint32      the set of all unsigned 32-bit integers (0 to 4294967295)
uint64      the set of all unsigned 64-bit integers (0 to 18446744073709551615)

int8        the set of all signed  8-bit integers (-128 to 127)
int16       the set of all signed 16-bit integers (-32768 to 32767)
int32       the set of all signed 32-bit integers (-2147483648 to 2147483647)
int64       the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807)

float32     the set of all IEEE-754 32-bit floating-point numbers
float64     the set of all IEEE-754 64-bit floating-point numbers

complex64   the set of all complex numbers with float32 real and imaginary parts
complex128  the set of all complex numbers with float64 real and imaginary parts

byte        alias for uint8
rune        alias for int32

당신이 사용해야한다는 것을 의미합니다 float64(integer_value).


유형 변환 T () 여기서 T 는 원하는 결과 데이터 유형이며 GoLang에서는 매우 간단합니다.

내 프로그램 에서 사용자 입력에서 정수 i스캔 하고 유형 변환을 수행하여 변수 f 에 저장합니다 . 출력 float64int입력에 해당하는 내용을 인쇄합니다 . float32GoLang에서도 데이터 유형을 사용할 수 있습니다

암호:

package main
import "fmt"
func main() {
    var i int
    fmt.Println("Enter an Integer input: ")
    fmt.Scanf("%d", &i)
    f := float64(i)
    fmt.Printf("The float64 representation of %d is %f\n", i, f)
}

해결책:

>>> Enter an Integer input:
>>> 232332
>>> The float64 representation of 232332 is 232332.000000

intutils.ToFloat32

// ToFloat32 converts a int num to a float32 num
func ToFloat32(in int) float32 {
    return float32(in)
}

// ToFloat64 converts a int num to a float64 num
func ToFloat64(in int) float64 {
    return float64(in)
}

참고 URL : https://stackoverflow.com/questions/19230191/convert-an-integer-to-a-float-number-in-golang

반응형