GO Program to Calculate Area of Rectangle and Square
Check the scope of variable declare outside the main function and (l,b) both variables declare in a single statement. In this example, we are calculating are of rectangle and square.
Example
package main
import "fmt"
var area int // Variable declare outside the main function
func main(){
var l,b int //Declaration of multiple Variables
fmt.Print("Enter Length of Rectangle : ")
fmt.Scan(&l)
fmt.Print("Enter Breadth of Rectangle : ")
fmt.Scan(&b)
area = l * b
fmt.Println("Area of Rectangle : ",area) //move to new line
fmt.Print("Enter Length of Square : ")
fmt.Scan(&l)
area = l*l
fmt.Print("Area of Square : ",area)
}
Most Helpful This Week
How do you handle HTTP server HTTP/2 in Go?
How do you handle HTTP errors in Go?
How to convert String to Boolean Data Type Conversion in Go?
How do you handle HTTP client server compression in Go?
How do you handle HTTP server health checks in Go?
Undefined reference to <variable/function> error in Golang