(!get_input.hasNextInt() || ((get_input.nextInt()) <= 0))
while (!get_input.hasNextInt()) {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Введите число (а): ");
int a = 0;
boolean isATrue = true;
while (isATrue) {
a = scanner.nextInt();
if (a <= 0) {
System.out.print("Введите число больше 0: ");
} else {
isATrue = false;
}
}
System.out.print("Введите число (b): ");
int b = 0;
boolean isBTrue = true;
while (isBTrue) {
b = scanner.nextInt();
if (b <= 0) {
System.out.print("Введите число больше 0: ");
} else {
isBTrue = false;
}
}
System.out.println("'A' в степени 'B' = " + pow(a, b));
}
public static int pow(int a, int b) {
return (int) Math.pow(a, b);
}
*/5 * * * * docker run --rm example_app_image:latest /example-scheduled-task.sh
@Scheduled
запланировать периодический запуск приложения (вообще, надо будет подумать над этим, может действительно стоит так и сделать). public class InfoFrame {
public static void customMethod() {
System.out.println("Hello world");
}
}
class ButtonEventListener implements ActionListener {
public void actionPerformed(ActionEvent e) {
InfoFrame.customMethod();
}
}
Но если у тебя вдруг есть желание на бутылочку пива заработать)
Я установил этот плагин, можете пожалуйста написать как им пользоваться?
И еще если я верну старый поиск, то тут проблемка... он поломанный