Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace DepositCalculator
- {
- class Program
- {
- static void Main(string[] args)
- {
- double deposit = double.Parse(Console.ReadLine());
- int months = int.Parse(Console.ReadLine());
- double percents = double.Parse(Console.ReadLine());
- double finalsum = deposit + months * ((deposit * (percents / 100)) / 12);
- Console.WriteLine(finalsum);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement