Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package game;
- import javax.swing.JOptionPane;
- public class Game {
- public static void main(String[] args) {
- // JOptionPane.showInputDialog - метод для показа диалога для ввода информации
- String rez = JOptionPane.showInputDialog(null, "Введите сложность игры от 1 до 7:", "Сложность игры", 1);
- System.out.println("rez=" + rez);
- // используем метод для выполнения преобразования из строки в число (значение типа int)
- int slogn = Integer.parseInt(rez);
- System.out.println("slogn=" + slogn);
- // проверка что число находится в диапозоне от 1 до 7
- // && - логическое И || - логическое ИЛИ
- if(slogn>=1 && slogn<=7){
- //System.out.println("OK!");
- new Okno(slogn);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement