嘿!我目前正在学习 Go Lang,我正在对我的概念做一些基本的笔记,尽管我也只是将它们发布在这里。它们没有经过深思熟虑或写得不好,但只是我时不时做笔记以供参考。
我正在参加 Maximilian Schwarzmüller 的 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)
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3