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)
- shoesPrice := tuitionFee * 0.6
- teamClothes := shoesPrice * 0.8
- balls := teamClothes / 4
- accessories := balls / 5
- fmt.Println(tuitionFee + shoesPrice + teamClothes + balls + accessories)
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement