Advertisement
JacksonvilleFlorida

ShoppingCart01

Sep 28th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.50 KB | None | 0 0
  1.  
  2. package shoppingcart01;
  3.  
  4. public class ShoppingCart01 {
  5.     public static void main(String[] args) {
  6.         // Declare and initialize String variables.  Do not initialize message yet.
  7.        
  8.         String custName = "Alex";
  9.         String itemDesc = "shirt.";  
  10.         // Assign the message variable
  11.        
  12.         String message = " wants to purchase a ";
  13.        
  14.         // Print and run the code
  15.        
  16.         System.out.println(custName + message + itemDesc);
  17.        
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement