GO Program to find area and circumference of circle
This simple GO language program is Calculating the area and circumference of the circle. This is an example how we use float64 and constant declaration.
Example
package main
import "fmt"
func main(){
var rad float64
const PI float64 = 3.14 // Constant
var area float64
var ci float64
fmt.Print("Enter radius of Circle : ")
fmt.Scanln(&rad)
area = PI * rad * rad
fmt.Println("Area of Circle is : ",area)
ci = 2 * PI * rad
fmt.Println("Circumference of Circle is : ",ci)
}
Most Helpful This Week
Illustration of Cigarette Smokers Problem in Golang
Go program to find TXT records of a domain
How to concatenate two or more slices in Golang?
How to remove special characters from a string in GoLang?
Create and Print Multi Dimensional Slice in Golang
How do you handle HTTP timeouts with an HTTP client in Go?