Question: I have these 2 screen shots. https://prnt.sc/t9nh4p https://prnt.sc/t9nhu5 So I want to modify the following codes in response to the instruction on the screenshot. My

I have these 2 screen shots.

  1. https://prnt.sc/t9nh4p
  2. https://prnt.sc/t9nhu5

So I want to modify the following codes in response to the instruction on the screenshot.

My code

import javax.swing.JOptionPane;

public class SuperPower {

public static void main(String[] args)

{

String power = JOptionPane .showInputDialog("What is your super power?");

power = power.toUpperCase();

JOptionPane.showMessageDialog(null,power+" TO THE RESCUE!");

}

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!