Advertisement
Spocoman

Account Balance

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