嘿!我目前正在學習 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