Machine Problem
Write a program to solve area and circumference of the circle using Go programming language.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at 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.
Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
=================================================
Want to support my channel?
GCash Account
Jake Pomperada
09173084360
Paypal
https://paypal.me/jakerpomperada
Patreon
https://www.patreon.com/jakerpomperada
Thank you very much for your support.
Program Listing
/* circle.go
Author : Mr. Jake Rodriguez Pomperada, MAED-IT, MIT
Date : March 21, 2021Sunday 9:18 AM
Websites :www.jakerpomperada.com and www.jakerpomperada.blogspot.com
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")
}