Respuesta :

Answer:

import javax.swing.JFrame;

public class Main {

public static void main(String[] args) {

// Create a frame

JFrame frame = new JFrame("Swing");

// Display the frame

frame.setVisible(true);

}

}

Explanation: