/
tasmity
/
library
Обзор
Документация
Войти
/
tasmity
/
library
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/com/java/random/GeneratorTest.java
20 строк
772 B
tasmity
add Generator
12 май 2021, 13:29
12 май 2021, 13:29
b67034c
Код
Авторство
О чём код?
package com.java.random; import java.util.Scanner; public class GeneratorTest { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("Input the length of the secret code:"); int secretLength = scanner.nextInt(); if (secretLength > 36) { System.out.printf("Error: can't generate a secret number with a length of %d because" + "there aren't enough unique digits.%n", secretLength); return; } System.out.println("Input the number of possible symbols in the code:"); int secretSymbol = scanner.nextInt(); System.out.print("The secret is prepared: " + Generator.randomSecret(secretLength, secretSymbol)); } }