Advertisement
TonyGeorge2708

3-3, Exercise 1

Sep 26th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1.  
  2. package shoppingcart01;
  3.  
  4. public class ShoppingCart01 {
  5.     public static void main(String[] args) {
  6.        
  7.         String custName = "Alex";
  8.         String itemDesc = "Fedora";
  9.         String message = custName + " wants to purchase a " + itemDesc;
  10.        
  11.         System.out.println(message);
  12.        
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement