C# C# Console

Calculate Compound Interest in C#

In this example, i’ll show you How to find compound interest in C#.

This is a C# program that calculates the total amount of an investment over a number of years, given the initial amount, the rate of interest, the number of years, and the number of times per year that the interest is compounded.

When the program is run, it prompts the user to enter the initial amount of the investment, the rate of interest, the number of years, and the number of times per year that the interest is compounded.

It then uses a loop to calculate the total amount of the investment for each year, based on the initial amount, the rate of interest, and the number of times per year that the interest is compounded. The total amount for each year is calculated using the formula:

Total = Amount * (1 + interestRate / annualCompound)^(annualCompound * t)

where Amount is the initial amount of the investment, interestRate is the rate of interest, annualCompound is the number of times per year that the interest is compounded, and t is the number of years.

The program then outputs the total amount for each year to the console and waits for the user to press the Enter key before ending.

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.