Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6723589
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:35:14+00:00 2026-05-26T09:35:14+00:00

I am trying to count syllables and right now I’m running some test to

  • 0

I am trying to count syllables and right now I’m running some test to see if I can find vowels and then go from there. However, my output is coming up as 0 and I fail to see where the error is.

import java.util.*;
import java.io.*;

public class Word{

    private char[] letters;
    private char[] vowels;
    private int ct;
    private int temp;
    private int syllableCt;
    private int iftest;

    public Word(String[] words){
        temp = 0;
        ct = 0;
        for (int i = 0;i<words.length;i++){

            temp = countSyllables(words[i]);

        }

    }

    public int countSyllables(String str){

        char[] letters = str.toCharArray();
        syllableCt = 0;
        for (int i = 0; i<letters.length;i++){
            if (isVowel(letters[i]))
                syllableCt++;




            System.out.println("" + letters[i] + "\n");
            System.out.println("" + syllableCt + "\n");



        }
        return syllableCt;
    }
    public boolean isVowel(char ch){

        int iftest = 0;
        char[] vowels = { 'a', 'e', 'i', 'o', 'u', 'y','A','E','I','O','U','Y'};
        for (int i = 0;i<vowels.length;i++){
            if (ch == i)
                iftest = 1;

        }
        if (iftest == 1)
            return true;
        else
            return false;
    }

    public static void main(String args[]){
        String[] words;
        words = new String[5];
        words[0] = "dog";
        words[1] = "moon";
        words[2] = "syllables";
        words[3] = "reddit";
        words[4] = "3749832";
        Word word = new Word(words);
        System.exit(0);
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T09:35:15+00:00Added an answer on May 26, 2026 at 9:35 am

    There looks to be a mistake in the method which checks for the vowel

         

    if (ch == i)
              iftest = 1;
    

    The check should be ch== vowels [i]. Also, the method and class can be greatly refactored, can’t help there as I don ‘t have access to a computer right now.

    See if the method below works :

    public boolean isVowel(char ch){
    
      int iftest = 0;
      char[] vowels = { 'a', 'e', 'i', 'o', 'u', 'y','A','E','I','O','U','Y'};
      for (int i = 0;i<vowels.length;i++){
          if (ch == vowels[i])
              return true;
    
      }
      
          return false;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im trying to count how many files can 'find' the script and if its
I'm trying to count the yes and no votes so that I can just
I'm trying to count trailing zeros of numbers that are resulted from factorials (meaning
I'm trying to count the number of tags in the 'soup' from a beautifulsoup
I'm trying to write a simple regex for my java program to count syllables,
I am trying to count in multiple columns then group by for a total
I'm trying to count all records from my 'jobs' table that have a 'completed'
I am trying to count how many element with the class .test within my
I'm trying select count(*) from groups left join members on groups.id=members.group_id group by groups.id
I am trying to count the checkhed checkboxes. See her: http://jsfiddle.net/2bCdR/2/ The Jquery counter

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.