728x90 반응형 고랭 마스터3 2021.10.22_2742-기찍N 소스코드 package main import ( "bufio" "fmt" "os" ) func main() { reader := bufio.NewReader(os.Stdin) writer := bufio.NewWriter(os.Stdout) N := 0 fmt.Fscanf(reader, "%d", &N) for i := N; i >= 1; i-- { fmt.Fprintf(writer, "%d\n", i) } writer.Flush() } 설계 위의 경우도 우선 저런식으로 입출력을 쓰는 구나 테스트한것 그냥 역으로 출력해주면됨 이번꺼는 Fprintln 을 하지 않고 Fprintf를 이용해서 입출력해봄 실수 실수 없음 문제 링크 2742-기찍N 원본 https://github.com/3DPIT/golang/.. 2021. 10. 22. Go Lang - Mock Testing 참고 테스트 git 자료 https://github.com/3DPIT/golang/tree/master/0715/1.%20MockTest%20Study 3DPIT/golang Contribute to 3DPIT/golang development by creating an account on GitHub. github.com 2021. 7. 18. Go Lang - Slice 첨부 테스트 git 자료 https://github.com/3DPIT/golang/tree/master/0715/0.%20Slice%20%26%20Instance%20Study 2021. 7. 18. 이전 1 다음 728x90 반응형