Question NEEDS TO BE IN JAVA ! THANK YOU 17. Wi-Fi Diagnostic Tree Figure 3-23 shows a simplified flowchart for troubleshooting a bad Wi-Fi connection. Use the flowchart to create a program that leads a person through the steps of fixing a bad Wi-Fi connection. Here is an example of the program's output: Reboot the computer and try to connect. Did that fix the problem? no [Enter] Reboot the router and try to connect. Did that fix the problem? yes [Enter] olution is found to the problem. Here is another

GZX2OY The Asker · Computer Science

NEEDS TO BE IN JAVA ! THANK YOU

Transcribed Image Text: 17. Wi-Fi Diagnostic Tree Figure 3-23 shows a simplified flowchart for troubleshooting a bad Wi-Fi connection. Use the flowchart to create a program that leads a person through the steps of fixing a bad Wi-Fi connection. Here is an example of the program's output: Reboot the computer and try to connect. Did that fix the problem? no [Enter] Reboot the router and try to connect. Did that fix the problem? yes [Enter] olution is found to the problem. Here is another
More
Transcribed Image Text: 17. Wi-Fi Diagnostic Tree Figure 3-23 shows a simplified flowchart for troubleshooting a bad Wi-Fi connection. Use the flowchart to create a program that leads a person through the steps of fixing a bad Wi-Fi connection. Here is an example of the program's output: Reboot the computer and try to connect. Did that fix the problem? no [Enter] Reboot the router and try to connect. Did that fix the problem? yes [Enter] olution is found to the problem. Here is another
Community Answer
EKDKLZ

Solution Code import java.util.Scanner; public class Main {   public static void main(String[] args)   {     String input;     Scanner scr = new Scanner(System.in);          System.out.println("Reboot the computer and try to connect");          System.out.println("Did that fix the problem?");          input = scr.nextLine();      if (input .equals("no"))   {        System.out.println("Reboot the router and try to reconnect");          System.out.println("Did that fix the problem?");          input = scr.nextLine();         if (input .equals("no"))        {         System.out.println("Make sure the cables between routers and nodes are plugged in firmly");                   System.out.println("Did that fix the problem?");         input = scr.nextLine();           if (input .equals("no"))            {             &#1 ... See the full answer