GO Program to Generate Multiplication Table


Example to generate the multiplication table of a number (entered by the user) using for loop in a while loop style.

Example

package main

import "fmt"

func main(){
    var n int
    fmt.Print("Enter any Integer Number : ")
    fmt.Scan(&n)
    i:=1
    /*     For loop as a Go's While     */
    for {
        if(i>10){
            break;
        }
        fmt.Println(n," X ",i," = ",n*i)
        i++
    }
}
Most Helpful This Week