Advertisement
aneliabogeva

Travelliing

Nov 25th, 2020
631
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.61 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 = scanner.nextDouble();
  10.             Double savedMoney = 0.00;
  11.             while (savedMoney < budget){
  12.                 Double income = scanner.nextDouble();
  13.                 savedMoney += income;
  14.             }
  15.             System.out.printf("Going to %s!", destination);
  16.             destination = scanner.nextLine();
  17.         }
  18.     }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement