Advertisement
ada1711

Untitled

Jun 2nd, 2024
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. Bottle pepsi = new Bottle();
  6. pepsi.DrinkType = "Pepsi";
  7. pepsi.CurrentDrinkAmount = 1500;
  8.  
  9. while (pepsi.CurrentDrinkAmount > 0)
  10. {
  11. pepsi.Drink(300);
  12. pepsi.CheckAmount();
  13. }
  14.  
  15. Console.ReadKey();
  16. }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement