やあ!私は現在 Go Lang を学習しており、自分の Notion に関する基本的なメモをいくつか取っており、それをここで公開したいと思っています。よく考えられて書かれているわけではありませんが、参考のために時々メモしているだけです。
私はMaximilian SchwarzmüllerによるUdemyコースを受講しています。
func calculateFutureValue(investmentAmount, expectedReturn, years float64) (fv float64, rfv float64) { fv = (investmentAmount) * math.Pow(1+expectedReturn/100, float64(years)) rfv = fv / math.Pow(1+inflationRate/100, years) return }
go mod init example.com/bank
wantsCheckBalance := choice == 1
if choice == 1 || choice == 2 { }
if choice == 1 { fmt.Println("Your Balance is", accountBalance) } else if choice == 2 { }
accountBalance += depositAmount //which equals to accountBalance = accountBalance + depositAmount
以上がGOを学ぶ: 06の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。