2012/06/28 4

손으로 계산하는 긴 자리 곱셈표 만들기 with Go

초등학교 때 배우는 두 정수의 곱셈표를 만들어 주는 Go 소스이다. /* * Filename: makeMultTable.go * * Print a multiplication table. * * Execute: go run makeMultTable.go 230 5100 * * or * * Compile: go build makeMultTable.go * Execute: ./makeMultTable 230 5100 * * Date: 2012/06/28 * Author: pkim (AT) scripts.pe.kr */ package main import ( "fmt" "os" "strconv" ) func println(s string) { fmt.Printf("%s\n", s) } func print(s s..

프로그래밍/Go 2012.06.28