Go Program to calculate Simple Interest

Write a Go Program to calculate Simple Interest. This golang program allows the user to enter the total principal amount, rate of interest, and the number of years and then find the Simple Interest. The formula to find simple interest is Simple Interest = (principal amount * rate of interest * years) / 100 package … Read more