Go 언어에는 while 반복문이 없으므로 for 반복문을 (while 반복문 처럼) 쓰면 된다. 소스 파일명: testWhile.go // Filename: testWhile.go // // Execute: go run testWhile.go 625 1000 // or // Compile: go build testWhile.go // Execute: ./testWhile 625 1000 package main import ( "fmt" "os" "strconv" ) // 사용법 표시 함수 func printUsing() { fmt.Printf("Using: testWhile [integer1] [integer2]\n"); fmt.Printf("This finds the greatest common di..