Search:

Type: Posts; User: glebovg

Search: Search took 0.09 seconds.

  1. Replies
    2
    Views
    1,415

    A deck of cards

    Create a class called CardDeck with a main method contents exactly as shown here:


    {
    String[] deck=new String[52];
    createDeck(deck);
    for(int i=0; i<52; i++)
    System.out.println(deck[i]);
    }
  2. Thread: Array

    by glebovg
    Replies
    1
    Views
    1,228

    Re: Array

    I got it.


    public class ArrayTest
    {
    public static void main(String[] args)
    {
    arrayCombiner();
    } // end main
    public static void arrayCombiner()
  3. Thread: Array

    by glebovg
    Replies
    1
    Views
    1,228

    Array

    Create a Java class named ArrayTest with a method called arrayCombiner that creates three arrays of size 10. The first array should contain the values 1, 3, 5, 7, 9, 11, 13, 15, 17, and 19. The...
Results 1 to 3 of 3