Guest User

Untitled

a guest
Nov 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. import javax.swing.*;
  2. public class jop {
  3.  
  4. public static void main(String[] args) {
  5. String line = JOptionPane.showInputDialog("Enter a word");
  6.  
  7. While(!(line.equalsIgnoreCase("stop")));
  8. {
  9. System.out.println(line);
  10. line = JOptionPane.showInputDialog("Enter a word");
  11. }
  12. }
  13.  
  14. }
Add Comment
Please, Sign In to add comment