Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Vail {
- public static void main(String[] args) {
- String s = null;
- String s2 = "Hello";
- while(true){
- s = JOptionPane.showInputDialog("Hello:");
- if(s.equals(s2)){
- break;
- }
- }
- JOptionPane.showMessageDialog(null, "Вы справились");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement