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.
- 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 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
Get step-by-step solutions from verified subject matter experts
