Search:

Type: Posts; User: hofamilyiiii

Search: Search took 0.10 seconds.

  1. [SOLVED] Club Membership Registration client-server database problem

    hi, I am currently on an assignment to create a club membership registration system, which will need to use client-server side code and access to localhost database.

    I have done everything, but...
  2. Replies
    6
    Views
    5,692

    Re: Recursive Method to count vowel

    public static void checkVowel(String word, int i, int last, int count) {
    if (i == last)
    {
    System.out.println("Total number of vowel is " + count);
    }
    ...
  3. Replies
    6
    Views
    5,692

    Recursive Method to count vowel

    public static void main(String[] args) {
    Scanner input = new Scanner(System.in);
    System.out.print("Enter a string: ");
    String word = input.nextLine();
    int i = 0,...
Results 1 to 3 of 3