Lyubohd

Account Balance

Mar 6th, 2021
902
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.65 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4.     public static void main(String[] args) {
  5.         Scanner scan = new Scanner(System.in);
  6.         double moneyInBank = 0;
  7.         String input = scan.nextLine();
  8.         while (!input.equals("NoMoreMoney")) {
  9.             double money = Double.parseDouble(input);
  10.             if (money < 0) {
  11.                 System.out.println("Invalid operation!");
  12.                 break;
  13.             }
  14.  
  15.             moneyInBank += money;
  16.             System.out.printf("Increase: %.2f%n", money);
  17.             input = scan.nextLine();
  18.         }
  19.  
  20.         System.out.printf("Total: %.2f", moneyInBank);
  21.     }
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment