package
0.0.0-20200526015148-b343531734ec
Repository: https://github.com/fakorede/learning-golang.git
Documentation: pkg.go.dev

# README

Multiplication Table Generator

Generates a Multiplication Table in GO based on the passed argument. That is, if 5 is passed, it generates a 5x5 multiplication table

Implemented using nested for loops.

Usage

go run main.go 5

Example Output

    X    0    1    2    3    4    5
    0    0    0    0    0    0    0
    1    0    1    2    3    4    5
    2    0    2    4    6    8   10
    3    0    3    6    9   12   15
    4    0    4    8   12   16   20
    5    0    5   10   15   20   25