История страницы
...
Get random number Version 1 (Net)
Группа действий: "Базовые действия", подгруппа "Общее"
...
Action group: Base actions, subgroup: General
...
Description
The action returns random number
Иконка
Параметры действия
Входные параметры
- Минимум - наименьшее возможное значение.
- Максимум - наибольшее возможное значение.
- Целое? - если значение параметра равно true, то будет сгенерировано целое число. Иначе - любое действительное число в интервале [Минимум, Максимум].
Выходные параметры
Результат - сгенерированное случайное число.
Настройки
Action icon
Settings of parameters
Property | Description | Type | Filling example | Mandatory field |
---|---|---|---|---|
Parameters | ||||
Minimum | The smallest possible value | Numeric | -18 | No |
Maximum | The largest possible value | Numeric | 56 | No |
Integer? | If the parameter value is true, then an integer will be generated. Otherwise - any real number in the range [Minimum, Maximum] | Boolean |
...
true | No | |||
Results | ||||
---|---|---|---|---|
Result | Generated random number | Numeric |
Особые условия использования
Отсутствуют.
Пример использования
Задача
Сгенерировать случайное целое число от -100 до 50 и вывести результат в диалоговом окне.
Решение
Воспользоваться действиями "Сгенерировать случайное число" и "Сообщение".
Реализация
...
Special conditions of use
None.
Example of use
Task
Generate a random integer from -100 to 50 and display the result in a dialog box.
Solution
Use the "Generate random number" and "Show message" actions.
Implementation
- Move the "Generate a random number" action to the workspace.
- Set the parameters of the "Generate random number" action.
- Move the "Show message" action to the workspace.
- Set the "Show message" action parameter.
In the "Message text" field add the result of the "Generate random number" action. - Click on the "Start" button in the top panel.
Result
The program robot completed successfully.
A dialog box with a randomly generated number is displayed.
Результат
Программный робот отработал успешно.
Вывелось диалоговое окно со случайно сгенерированным числом.
...