fix: precedence and assignment operator questions

This commit is contained in:
Inanc Gumus
2018-11-07 11:29:09 +03:00
parent a7e791e8fe
commit 160f9f38e6
4 changed files with 11 additions and 4 deletions

View File

@ -36,4 +36,7 @@ func main() {
// This expression should print 15
fmt.Println(10 / 2 * 10 % 7)
// This expression should print 40
fmt.Println(100 / 5 / 2)
}

View File

@ -27,4 +27,7 @@ func main() {
// 10 / 2 * 10 % 7
fmt.Println(10 / 2 * (10 % 7))
// 100 / 5 / 2
fmt.Println(100 / (5 / 2))
}