Search:

Type: Posts; User: ddaniel10

Search: Search took 0.10 seconds.

  1. Replies
    9
    Views
    943

    Re: Java Program Add boolean method

    Yes, the class file has GetFavMovie
  2. Replies
    9
    Views
    943

    Re: Java Program Add boolean method

    this is what my instructor emailed me

    "The Boolean that is returned is whether or not the movie was added. It has nothing to do with asking the user to add another. Like for example, if you are...
  3. Replies
    9
    Views
    943

    Re: Java Program Add boolean method

    import java.util.Scanner;

    public class MovieTest
    {
    public static void main(String[] args)
    {
    String testMovie;
    int testRating;
    String[] testCharacter = new String[3];
  4. Replies
    9
    Views
    943

    Re: Java Program Add boolean method

    Implement the following method -- public boolean addMovie(String movieName, int rating, String[] characters). It should return true or false depending on the status of adding the movie.
    Implement...
  5. Replies
    9
    Views
    943

    Java Program Add boolean method

    I need to add a boolean method to add another movie, but want to know the steps to do so. this is my MovieTest


    import java.util.Scanner;

    public class MovieTest
    {
    public static void...
Results 1 to 5 of 5