摘要: package main import ( "fmt" ) func print(n int,x rune,y rune)(){ fmt.Printf("moving disk %d from pole %c to pole %c\n",n,x,y) } func move(n int,a rune,b rune,c rune)(){ if n==1{ ... 阅读全文
posted @ 2017-04-17 10:25 iVictor 阅读(791) 评论(0) 推荐(0) 编辑