THE BEST NEWSLETTER ANYWHERE
Join 6,000 subscribers and get a daily digest of full stack tutorials delivered to your inbox directly.No spam ever. Unsubscribe any time.
It is a short tutorial about how to calculate simple interest using golang
Simple interest is an interest applied to the principal amount applies to the rate of interest in a period for some time.
Normally, To calculate simple interest in mathematical terms, We have used the formula.
Simple Interest=P x N x R/100
In a program code,
Here is the golang program code to calculate simple interest
package main
import (
"fmt"
)
func main() {
var principal, interest, period, total float64;
fmt.Print("Please enter principal amount: ")
fmt.Scanln(&principal)
fmt.Print("Please enter Interest Rate: ")
fmt.Scanln(&interest)
fmt.Print("Please enter period: ")
fmt.Scanln(&period)
total= (principal* interest* period) / 100
fmt.Println("\nSimple Interest Amount: ", total)
fmt.Println("\n Total Amount: ", amount+total)
}
Output:
Please enter principal amount: 10000
Please enter Interest Rate: 24
Please enter the period: 1
Simple Interest Amount: 2400
Total Amount: 12400
This program takes an input - principal, rate of interest, and period in years and stores these values in a variable.
Calculate the simple interest and returns total amount.
In this example, You learned to calculate simple interest principal amount in Go language.
🧮 Tags
Recent posts
Puppeteer Login Test example How to convert Double to Integer or Integer to double in Dart| Flutter By Example Best ways to fix 504 gateway time out in nodejs Applications Fix for Error No configuration provided for scss Multiple ways to List containers in a Docker with examplesRelated posts