Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Conversation Between computercoder and javapenguin

2 Visitor Messages

  1. import java.util.*;
     
    public class Vowels{
     
      public static void main(String[] args){
     
     
    	  Scanner console = new Scanner(System.in);
     
        int counter= 0;
        System.out.println("Input a sequence of characters");
        String text = console.nextLine();
     
     
        for (int loop = 0; loop < text.length(); loop++){
          char lett = text.charAt(loop);
          if (lett=='a' || lett=='e' || lett=='i' || lett=='o' || lett=='u' || lett=='A' || lett=='E' || lett=='I' || lett=='O' || lett=='U') {
            counter++;
          }
        }
        System.out.println("There are " + counter + " vowels in the inputted text.");
      }
    }

    Input a sequence of characters
    IWasAPenguin
    There are 6 vowels in the inputted text.
  2. Try String.trim().

    http://download.oracle.com/javase/1....tml#trim%28%29

    See response to post.
Showing Visitor Messages 1 to 2 of 2