Numeral Systems - Loop



print decimal,binary,hexadecimal number from 10 to 15 using loop

4.Numeral systems - using loop

package main



import "fmt"



func main() {

for i := 1; i < 16; i++ {

fmt.Printf("%d \t %b \t %x \n", i, i, i)

...



Read: https://blog.cloudnativefolks.org/numeral-systems-loop