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
Program in Go language to print Floyd's Triangle
GO Program to Calculate Area of Rectangle and Square
GO language program with example of String Compare function
Contains, ContainsAny, Count and EqualFold string functions in Go Language
GO language program with example of Array Reverse Sort Functions for integer and strings
GO language program with an example of Hash Table