Go program to find Square of a Number

This Go program to find the Square of a Number allows users to enter a numeric value. Next, it used the Arithmetic multiplication operator to find the square of that number. package main import “fmt” func main() { var sqnum int fmt.Print(“Enter the Number to find Square = “) fmt.Scanln(&sqnum) sqr := sqnum * sqnum … Read more