go编程 NO 2 : multiplication table
摘要:1 package main 2 import "fmt" 3 func main(){ 4 5 for i:=1;i<10;i++ { 6 for j:=1;j<10;j++ { 7 if j<=i { 8 fmt.P...
阅读全文
go编程 NO 1 : hello world !!
摘要:package main import "fmt"func main(){ fmt.Println("hello world!!")}
阅读全文