Spocoman

05. Account Balance

Nov 20th, 2021 (edited)
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.75 KB | None | 0 0
  1. using System;
  2.  
  3. namespace AccountBalance
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string n = Console.ReadLine();
  10.             double sum = 0;
  11.             while (n != "NoMoreMoney")
  12.             {
  13.                 double money = double.Parse(n);
  14.                
  15.                
  16.                 if (money < 0)
  17.                 {
  18.                     Console.WriteLine("Invalid operation!");
  19.                     break;
  20.                 }
  21.                
  22.                 Console.WriteLine($"Increase: {money:F2}");
  23.                 sum += money;
  24.                 n = Console.ReadLine();
  25.                
  26.             }
  27.  
  28.                 Console.WriteLine($"Total: {sum:F2}");
  29.            
  30.         }
  31.     }
  32. }
  33.  
Add Comment
Please, Sign In to add comment