Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Program
- {
- static void Main(string[] args)
- {
- Bottle pepsi = new Bottle();
- pepsi.DrinkType = "Pepsi";
- pepsi.CurrentDrinkAmount = 1500;
- while (pepsi.CurrentDrinkAmount > 0)
- {
- pepsi.Drink(300);
- pepsi.CheckAmount();
- }
- Console.ReadKey();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement