In this example program I write a program to solve the area and circumference of the circle using Go programming language.
I am currently accepting programming work, it projects, school
programming projects, thesis and capstone projects, IT consulting
work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
I am currently accepting programming work, it projects, school
programming projects, thesis and capstone projects, IT consulting
work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
My personal website is http://www.jakerpomperada.com
My personal website is http://www.jakerpomperada.com
Sample Program Output
Program Listing
/* circle.go
Author : Mr. Jake Rodriguez Pomperada, MAED-IT
Date : December 7, 2018 Friday 4:12 PM
Emails : jakerpomperada@gmail.com and jakerpomperada@yahoo.com
*/
package main
import "fmt"
const PI float64 = 3.14
func main(){
var rad float64
var ci float64
var area float64
fmt.Print("\n")
fmt.Print("\tCalculate Area and Circumference of Circle")
fmt.Print("\n\n")
fmt.Print("\tEnter radius of Circle : ")
fmt.Scanln(&rad)
area = PI * rad * rad
fmt.Print("\n")
fmt.Print("\tArea of Circle is : ")
fmt.Printf("%0.2f ",area)
ci = 2 * PI * rad
fmt.Print("\n\n")
fmt.Print("\tCircumference of Circle is : ")
fmt.Printf("%0.2f ",ci)
fmt.Print("\n\n")
fmt.Print("\n")
fmt.Print("\tEnd of Program")
fmt.Print("\n")
}