Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace AccountBalance
- {
- class Program
- {
- static void Main(string[] args)
- {
- string n = Console.ReadLine();
- double sum = 0;
- while (n != "NoMoreMoney")
- {
- double money = double.Parse(n);
- if (money < 0)
- {
- Console.WriteLine("Invalid operation!");
- break;
- }
- Console.WriteLine($"Increase: {money:F2}");
- sum += money;
- n = Console.ReadLine();
- }
- Console.WriteLine($"Total: {sum:F2}");
- }
- }
- }
Add Comment
Please, Sign In to add comment