Main.java 330 B

1234567891011121314
  1. class Main {
  2. public static void main(String[] args) {
  3. PaymentMethod[] paymentMethods = {
  4. new CashPayment("Soles"),
  5. new CreditCardPayment("1234-5678-9101-2345"),
  6. new CashPayment("Dólares")
  7. };
  8. for (PaymentMethod paymentMethod: paymentMethods) {
  9. paymentMethod.processPayment(100);
  10. }
  11. }
  12. }