Advertisement
Krassi_Daskalova

Account

Feb 10th, 2019
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Balance {
  4. public static void main(String[] args) {
  5. Scanner scanner = new Scanner(System.in);
  6. int numberIncome = Integer.parseInt(scanner.nextLine());
  7. double account = 0;
  8.  
  9. while (numberIncome-- > 0) {
  10. double money = Double.parseDouble(scanner.nextLine());
  11.  
  12. if (money >= 0) {
  13. account += money;
  14. System.out.printf("Increase: %.2f%n", money);
  15.  
  16. } else {
  17. System.out.println("Invalid operation!");
  18. break;
  19. }
  20. }
  21. System.out.printf("Total: %.2f", account);
  22.  
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement