안녕하세요! 나는 현재 Go Lang을 배우고 있으며 내 Notion에 대한 몇 가지 기본 메모를 작성하고 있으며 여기에 게시할 수도 있습니다. 잘 생각해서 쓴 것도 아니고 잘 쓴 것도 아니고 그냥 참고용으로 가끔 메모하는 거에요.
저는 막시밀리안 슈바르츠뮐러의 Udemy 강좌를 수강하고 있습니다.
func outputText(text1 string, text2 string){ fmt.Print() }
func outputText(text1, text2 string) { fmt.Print() }
outputText("Investment Amount: ") fmt.Scan(&investmentAmount) func outputText(text1 string) { fmt.Print(text1) }
const inflationRate = 2.5 func main() { var investmentAmount float64 = 1000 var years float64 var expectedReturn = 5.5 }
func calculateFutureValue(investmentAmount, expectedReturn, years float64) (float64, float64) { fv := (investmentAmount) * math.Pow(1+expectedReturn/100, float64(years)) rfv := fv / math.Pow(1+inflationRate/100, years) return fv, rfv }
futureValue, futureRealValue := calculateFutureValue(investmentAmount, expectedReturn, years)
위 내용은 학습 GO: 05의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!