Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace DepositCalculator
- {
- class Program
- {
- static void Main()
- {
- double sum = double.Parse(Console.ReadLine());
- int months = int.Parse(Console.ReadLine());
- double annualPercentage = double.Parse(Console.ReadLine());
- double total = sum + (months * sum * annualPercentage / 1200);
- Console.WriteLine(total);
- }
- }
- }
Add Comment
Please, Sign In to add comment