Search:

Type: Posts; User: atheedom

Search: Search took 0.08 seconds.

  1. Replies
    6
    Views
    1,013

    Re: please solve my problem

    Its not clear what is the problem. The output is as follows (in part). Can you identify what you expect the output to be.

    1
    2
    3
    FIZZ
    4
    5
    BUZZ
    6
  2. Replies
    4
    Views
    1,049

    Re: Newbie, please help

    You can simplify substantially your code by using regular expressions.



    String word = "&$t-o&$n(y)";
    String ignore = "[~!@#$%^&*()_+-]";
    word = word.replaceAll(ignore,...
  3. Re: Enum Values Each Having Their Own Enum Values

    There are two main considerations:

    1. the data structure that stores the schools and subschools
    2. the way to interact with the user.

    1. The data structure.
    Using enums is among a number of...
  4. Replies
    4
    Views
    4,337

    Re: Print odd, even and zero digits from an int

    Have a look at the String and Character classes they have some useful methods.

    For example you could use:

    char result = num.charAt(pos);

    to get the character at the given position and...
Results 1 to 4 of 4