やあ!私は現在 Go Lang を学習しており、自分の Notion に関する基本的なメモをいくつか取っており、それをここで公開したいと思っています。よく考えられて書かれているわけではありませんが、参考のために時々メモしているだけです。
私は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)
以上がGOを学ぶ: 05の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。