Guest User

Untitled

a guest
Jun 23rd, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. package restaurantcalc;
  2.  
  3. import java.util.Scanner;
  4. import java.text.DecimalFormat;
  5.  
  6.  
  7. /**
  8. *
  9. * @author Sebastian
  10. */
  11. public class RestaurantCalc
  12. {
  13.  
  14. public static void main(String[] args)
  15. {
  16. double mealCost;
  17. Scanner Keyboard = new Scanner(System.in);
  18.  
  19. //Ask for Meal Cost
  20. System.out.print("How much was the meal? ");
  21. mealCost = keyboard.nextLine();
Add Comment
Please, Sign In to add comment