안녕하세요! 나는 현재 Go Lang을 배우고 있으며 내 Notion에 대한 몇 가지 기본 메모를 작성하고 있으며 여기에 게시할 수도 있습니다. 잘 생각해서 쓴 것도 아니고 잘 쓴 것도 아니고 그냥 참고용으로 가끔 메모하는 거에요.
막시밀리안 슈바르츠뮐러의 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!