Search:

Type: Posts; User: Dele

Search: Search took 0.11 seconds.

  1. Re: How to reverse a string, skiping numbers , and ' ?

    Try this. Run the code and see if you understand what is happening.

    Regards

    Dele


    package my.reversestring;

    import java.lang.String;
  2. Replies
    6
    Views
    2,152

    Re: Having trouble with linked list

    The final list size is always 10. The 11th item will be inserted but then the last node is immediately deleted as the list size is greater than 10.

    Dele
  3. Replies
    6
    Views
    2,152

    Re: Having trouble with linked list

    Here is my attempt for this problem. I found it easier to create my own linked list. I have 3 classes. The node class (LNode), the linked list class(LList) and the main app class (scoreApp).

    The...
  4. Re: Loading Gifs into an array

    Thanks for your reply.

    This is the code I am actually working with. The compiler complains about the array structure. I don't know why as it is the same as in your example.

    Dele



    import...
  5. Best approach to load .gif pictures into an Array then selecting few of them and attach to a lable

    I wish to load several Gif pictures into an array and then later select some of these gifs and attach to a label. What is the best approach?


    ImageIcon orange = new ImageIcon ("orange.gif");...
Results 1 to 5 of 5