Advertisement
miglenabs

Untitled

Nov 1st, 2021
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. using System;
  2.  
  3. namespace DepositCalculator
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. double depositSum = double.Parse(Console.ReadLine());
  10. int months = int.Parse(Console.ReadLine());
  11. double percent = double.Parse(Console.ReadLine());
  12.  
  13. double sum = depositSum + months * ((depositSum * (percent / 100)) / 12);
  14.  
  15. Console.WriteLine(sum);
  16. }
  17. }
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement