안녕하세요! 나는 현재 Go Lang을 배우고 있으며 내 Notion에 대한 몇 가지 기본 메모를 작성하고 있으며 여기에 게시할 수도 있습니다. 잘 생각해서 쓴 것도 아니고 잘 쓴 것도 아니고 그냥 참고용으로 가끔 메모하는 거에요.
막시밀리안 슈바르츠뮐러의 Udemy 강좌를 수강하고 있습니다.
fmt.Printf("Future Value : %v\nFuture Value (Adjusted for Inflation): %v", futureValue, futureRealValue)
formattedFV := fmt.Sprintf("Future Value : %.0f\n", futureValue) formattedFRV := fmt.Sprintf("Future Value (Adjusted for Inflation): %0.f\n", futureRealValue)
<p>fmt.Print(formattedFV, formattedFRV)</p>
가세요
fmt.Printf(`미래 가치 : %v 미래 가치(인플레이션 조정): %v`, futureValue, futureRealValue)
`
위 내용은 학습 GO: 04의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!