Search:

Type: Posts; User: snowguy13

Search: Search took 0.07 seconds.

  1. Re: Need help with parameter passing in my project? (Beginner)

    No, don't do that.

    Hmm... Okay, your method asks for String, String, String, String, int. When you call the method, you have to put values into the method that match the parameter list. So, for...
  2. Re: Need help with parameter passing in my project? (Beginner)

    Yes! Something like that! :D


    Ehhh... No. That'd be no fun for you! I can't tell you how to think about this, you have to develop the understanding of this concept. Sorry. :p
  3. Re: Need help with parameter passing in my project? (Beginner)

    The parameters you pass can't just be classes or data types, you actually have to put variables into those spaces. You are getting the error because "String" is not a variable, but a class, and it...
  4. Re: Need help with parameter passing in my project? (Beginner)

    Here is the declaration of your method:

    isVowel(String suffixR, String wordR, String wordPlural, String wordSuffix, int leftmostIndex)

    It requires these parameters: String, String, String,...
Results 1 to 4 of 4