LoslegenKostenlos loslegen

An array, all at once

In the previous exercises, you created and parameterized an array, then initialized it separately.

In this exercise, you'll experience performing all of these steps at once. The card variables you need are already defined.

Diese Übung ist Teil des Kurses

Introduction to Scala

Kurs anzeigen

Anleitung zur Übung

  • Create an array named hands.
  • Initialize the first player's hand to tenClubs + fourDiamonds.
  • Initialize the second player's hand to nineSpades + nineHearts.
  • Initialize the third player's hand to twoClubs + threeSpades.

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

// Create, parameterize, and initialize an array for a round of Twenty-One
val ___ = ___(___ + ___,
              ___ + ___,
              ___ + ___)
Code bearbeiten und ausführen