Search:

Type: Posts; User: aterrorbite

Search: Search took 0.25 seconds.

  1. Replies
    3
    Views
    1,080

    [SOLVED] Re: Shuffling a deck of cards

    Thanks, that solved it.

    I also got it to work with the code shown below.


    String[] shuffledDeck= new String[standardDeck.length];
    for(int i =0;i<standardDeck.length;i++){
    ...
  2. Replies
    3
    Views
    1,080

    [SOLVED] Shuffling a deck of cards

    I'm not sure why my original deck of cards is shuffling.



    public class Cards {

    public static void main(String[] agrs){

    final String[] standardDeck =...
  3. Replies
    10
    Views
    1,307

    Re: 1-100 counter

    The code shown below is ....

    /*Considered spoonfeeding, and removed*/

    I believe that you need to review the basics of loops and how the System.out.println actually work. Reading other peoples...
  4. Replies
    1
    Views
    764

    new to java

    Hey guys,

    I'm new to java programming but not programming in general. I've programmed in c and assembler in regards to pic microcontrollers so far and I hope to pick up java programming as a...
Results 1 to 4 of 4