Search:

Type: Posts; User: philip12

Search: Search took 0.08 seconds.

  1. Replies
    132
    Views
    73,455

    Sticky: Re: 500 Ways to Print 1 to 10

    Hope this one counts..


    public static void main(String[] args) {
    int number = 0;
    recursion(number);
    }

    public static void recursion(int number) {
    if (number <= 10) {
  2. Re: Program to find the number of occurrences of words in the text file

    What about how to search in text file any word and count how many it were repeated? Can try this one...
  3. Replies
    1
    Views
    751

    Happy New Year to all!

    Hello everyone, newbie here from Philippines, start the year with this exciting forum. Thanks
Results 1 to 3 of 3