Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package main
- import "fmt"
- func main() {
- var tuitionFee float64
- fmt.Scanln(&tuitionFee)
- var shoesPrice = tuitionFee * 0.6
- var teamClothes = shoesPrice * 0.8
- var ball = teamClothes / 4
- var accessories = ball / 5
- var sum = tuitionFee + shoesPrice + teamClothes + ball + accessories
- fmt.Println(sum)
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement