Advertisement
hikespect

Game3

Jan 23rd, 2020
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. package nw;
  2.  
  3.  
  4. import javax.swing.*;
  5.  
  6. public class game {
  7.  
  8.     public static void main(String[] args) {
  9.        
  10.         String rez =
  11.     JOptionPane.showInputDialog(null,"1:","difficilty",1);
  12.        
  13.         int slogn = rez.charAt(0)-'0';
  14.        
  15.         if ((slogn>=1)&&(slogn<=7))
  16.         {
  17.             okno window = new okno(slogn);
  18.            
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement