Search:

Type: Posts; User: Java girl

Search: Search took 0.15 seconds.

  1. Thread: Vowels

    by Java girl
    Replies
    8
    Views
    924

    [SOLVED] Re: Vowels

    Thank you so much for all the guidance everyone! I simplified the program and got it to work just how it is required to work :D
    Here is my solution:


    import java.util.*;

    public class...
  2. Thread: Vowels

    by Java girl
    Replies
    8
    Views
    924

    [SOLVED] Re: Vowels

    Hi, I took both the ASCII guidance into condieration

    what I changed:


    for (int i=0; i<str.length(); i++)
    {
    //converts all string letters to lower case
    letter=...
  3. Thread: Vowels

    by Java girl
    Replies
    8
    Views
    924

    [SOLVED] Re: Vowels

    Thank you, I implemented the isLowerCase method well.
    However, the program requires comparing the entered position which is an integer to characters in the string that may be vowels.

    Here is my...
  4. Thread: Vowels

    by Java girl
    Replies
    8
    Views
    924

    [SOLVED] Vowels

    Hi,
    this is the question:
    Your program must accept a String (str) & an Integer(pos), returns true if the character at a given position (pos) is a vowel or false otherwise

    Here is my attempt:
    ...
Results 1 to 4 of 4