Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.15 KB | None | 0 0
  1. public class Icecream{
  2.  
  3. private int price;
  4. private String flavour;
  5.  
  6. public Icecream(int cost, String type){
  7.     price = cost; flavour = type;
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement