aneliabogeva

Travelling

Dec 13th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.67 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Travelling {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         String destination = scanner.nextLine();
  7.  
  8.         while (!"End".equals(destination)){
  9.             Double budget = Double.parseDouble(scanner.nextLine());
  10.             Double savedMoney = 0.00;
  11.             while (savedMoney < budget){
  12.                 Double income = Double.parseDouble(scanner.nextLine());
  13.                 savedMoney += income;
  14.             }
  15.             System.out.printf("Going to %s!", destination);
  16.             System.out.println();
  17.             destination = scanner.nextLine();
  18.         }
  19.     }
  20. }
  21.  
Add Comment
Please, Sign In to add comment