Search:

Type: Posts; User: Norm

Search: Search took 0.14 seconds.

  1. Thread: Vowels

    by Norm
    Replies
    8
    Views
    932

    [SOLVED] Re: Vowels

    That should be 'a' to show its a char and not a String.
    chars convert to int values for comparing. You don't have to look up the ASCII value. You can code: 'a'
    Instead of 1 use 'a', for 5 use...
  2. Thread: Vowels

    by Norm
    Replies
    8
    Views
    932

    [SOLVED] Re: Vowels

    The expressions on each side of a boolean operator like the || must be a boolean expression (returns either true or false). For example: (a > 3) || (b <=2)
    5 is does not have a boolean value. The...
Results 1 to 2 of 2