添加06.2.md和相关的例子与问题解答

This commit is contained in:
eXthen
2013-07-25 18:44:41 +08:00
parent 4d1f776e82
commit b429798ed4
9 changed files with 381 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
package main
import "fmt"
func main() {
fmt.Printf("Multiply 2 * 5 * 6 = %d\n", MultiPly3Nums(2, 5, 6))
// var i1 int = MultiPly3Nums(2, 5, 6)
// fmt.Printf("MultiPly 2 * 5 * 6 = %d\n", i1)
}
func MultiPly3Nums(a int, b int, c int) int {
// var product int = a * b * c
// return product
return a * b * c
}