This is a debugging problem - The files provided in the code editor to the right contain syntax and/or logic errors. In each case, determine and fix the problem, remove all syntax and coding errors, and run the program to ensure it works properly. I have edited some of the code but I am unsure how to fix the rest -    // Application lists valid shipping codes // then prompts user for a code // Application accepts a shipping code // and determines if it is valid import java.util.*; public class DebugEight1 {    public static void main(String args[])    {       Scanner input = new Scanner(System.in);       char userCode;       String entry, message;       boolean found = false;       char[] okayCodes = {'A','C','T','H'};       StringBuffer prompt = new              StringBuffer("Enter shipping code for this delivery\nValid codes are: ");       for(int x = 0; x < okayCodes.length; ++x)       {           prompt.append(okayCodes[x]);           if(x != (okayCodes.length - 1))              prompt.append(", ");            }       System.out.println(prompt);       entry = input.next();       userCode = entry.charAt(0);       for(int i = 0; i < okayCodes.length; ++i)       {          if(userCode = okayCodes)          {             found = true;          }       }       if(found)          message = "Good code";       else          message = "Sorry code not found";       System.out.println(message);    } }

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter6: Using Arrays
Section: Chapter Questions
Problem 1CP: In previous chapters, you created applications for the Greenville Idol competition. Now, modify the...
icon
Related questions
Question

This is a debugging problem -

The files provided in the code editor to the right contain syntax and/or logic errors. In each case, determine and fix the problem, remove all syntax and coding errors, and run the program to ensure it works properly.

I have edited some of the code but I am unsure how to fix the rest - 
 
// Application lists valid shipping codes
// then prompts user for a code
// Application accepts a shipping code
// and determines if it is valid
import java.util.*;
public class DebugEight1
{
   public static void main(String args[])
   {
      Scanner input = new Scanner(System.in);
      char userCode;
      String entry, message;
      boolean found = false;
      char[] okayCodes = {'A','C','T','H'};
      StringBuffer prompt = new 
            StringBuffer("Enter shipping code for this delivery\nValid codes are: ");
      for(int x = 0; x < okayCodes.length; ++x)
      {
          prompt.append(okayCodes[x]);
          if(x != (okayCodes.length - 1))
             prompt.append(", ");     
      }
      System.out.println(prompt);
      entry = input.next();
      userCode = entry.charAt(0);
      for(int i = 0; i < okayCodes.length; ++i)
      {
         if(userCode = okayCodes)
         {
            found = true;
         }
      }
      if(found)
         message = "Good code";
      else
         message = "Sorry code not found";
      System.out.println(message);
   }
}
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Unary Predicate
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT