Advertisement
Guest User

Untitled

a guest
Feb 15th, 2016
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public class Vail {
  2.  
  3.  
  4. public static void main(String[] args) {
  5. String s = null;
  6. String s2 = "Hello";
  7. while(true){
  8. s = JOptionPane.showInputDialog("Hello:");
  9. if(s.equals(s2)){
  10. break;
  11. }
  12. }
  13. JOptionPane.showMessageDialog(null, "Вы справились");
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement