
ПОМОГИТЕ ПЖ ПО БЫСТРОМУУУ ДАЮ 60 БАЛЛОВ Номер 1 У исполнителя Маркус две команды, которым
присвоены номера: 1. прибавь 1 2. умножь на b (b - неизвестное натуральное число) Выполняя первую из них, Маркус увеличивает число на экране на 1, а выполняя вторую, умножает это число на b. Программа для исполнителя Маркус - это последовательность номеров команд. Известно, что программа 11221 переводит число 5 в число 29. Определите значение b. Номер 2 У исполнителя Маркус две команды, которым присвоены номера: 1. прибавь 1 2. умножь на b (b - неизвестное натуральное число) Выполняя первую из них, Маркус увеличивает число на экране на 1, а выполняя вторую, умножает это число на b. Программа для исполнителя Маркус - это последовательность номеров команд. Известно, что программа 11221 переводит число 6 в число 289. Определите значение b. Номер 3 У исполнителя Бэбб две команды, которым присвоены номера: 1. прибавь a 2. умножь на 3 (a - неизвестное натуральное число) Выполняя первую из них, Бэбб увеличивает число на экране на число a, а выполняя вторую, умножает это число на 3. Программа для исполнителя Бэбб - это последовательность номеров команд. Известно, что программа 21211 переводит число 4 в число 76. Определите значение a. Номер 4 У исполнителя Бэбб две команды, которым присвоены номера: 1. прибавь a 2. умножь на 3 (a - неизвестное натуральное число) Выполняя первую из них, Бэбб увеличивает число на экране на число a, а выполняя вторую, умножает это число на 3. Программа для исполнителя Бэбб - это последовательность номеров команд. Известно, что программа 21211 переводит число 5 в число 80. Определите значение a. Номер 5 У исполнителя Бэбб две команды, которым присвоены номера: 1. прибавь a 2. умножь на 3 (a - неизвестное натуральное число) Выполняя первую из них, Бэбб увеличивает число на экране на число a, а выполняя вторую, умножает это число на 3. Программа для исполнителя Бэбб - это последовательность номеров команд. Известно, что программа 21122 переводит число 7 в число 225. Определите значение a.

Ответы на вопрос

Ответ:
1. 2
2. 6
3. 8
4. 7
5. 2
Объяснение:
Делал обычным перебором:
Создал цикл перебирающий натуральные числа и повторяющийся пока не получу нужное значение
Прямо в цикле объявил переменную которая приняла значение начального числа
Произвел все команды в цикле



Problem 1: Marcus' Program
In this problem, we are given a program for an executor named Marcus. The program consists of two commands: 1. Add 1 to the current number on the screen. 2. Multiply the current number on the screen by an unknown natural number, b.We are also given that the program "11221" converts the number 5 to the number 29. We need to determine the value of b.
To solve this problem, we can simulate the execution of the program step by step and track the changes to the number on the screen.
Let's start with the number 5 and execute the program: 1. Add 1: The number becomes 5 + 1 = 6. 2. Multiply by b: The number becomes 6 * b.
According to the problem, the final result is 29. Therefore, we can set up the equation:
6 * b = 29
To find the value of b, we can solve this equation: ``` 6 * b = 29 ```
By dividing both sides of the equation by 6, we get: ``` b = 29 / 6 ```
Calculating the value of b: ``` b = 4.8333... ```
Since b is described as a natural number, it cannot have a decimal part. Therefore, there is no natural number b that satisfies the given conditions.
Problem 2: Marcus' Program
In this problem, we are given another program for the executor Marcus. The program consists of two commands: 1. Add 1 to the current number on the screen. 2. Multiply the current number on the screen by an unknown natural number, b.We are also given that the program "11221" converts the number 6 to the number 289. We need to determine the value of b.
To solve this problem, we can follow the same approach as in the previous problem.
Let's start with the number 6 and execute the program: 1. Add 1: The number becomes 6 + 1 = 7. 2. Multiply by b: The number becomes 7 * b.
According to the problem, the final result is 289. Therefore, we can set up the equation:
7 * b = 289
To find the value of b, we can solve this equation: ``` 7 * b = 289 ```
By dividing both sides of the equation by 7, we get: ``` b = 289 / 7 ```
Calculating the value of b: ``` b = 41.2857... ```
Since b is described as a natural number, it cannot have a decimal part. Therefore, there is no natural number b that satisfies the given conditions.
Problem 3: Babb's Program
In this problem, we are given a program for an executor named Babb. The program consists of two commands: 1. Add the unknown natural number a to the current number on the screen. 2. Multiply the current number on the screen by 3.We are also given that the program "21211" converts the number 4 to the number 76. We need to determine the value of a.
To solve this problem, we can simulate the execution of the program step by step and track the changes to the number on the screen.
Let's start with the number 4 and execute the program: 1. Add a: The number becomes 4 + a. 2. Multiply by 3: The number becomes 3 * (4 + a).
According to the problem, the final result is 76. Therefore, we can set up the equation:
3 * (4 + a) = 76
To find the value of a, we can solve this equation: ``` 3 * (4 + a) = 76 ```
By dividing both sides of the equation by 3, we get: ``` 4 + a = 76 / 3 ```
Calculating the value of a: ``` 4 + a = 25.3333... a = 25.3333... - 4 a = 21.3333... ```
Since a is described as a natural number, it cannot have a decimal part. Therefore, there is no natural number a that satisfies the given conditions.
Problem 4: Babb's Program
In this problem, we are given another program for the executor Babb. The program consists of two commands: 1. Add the unknown natural number a to the current number on the screen. 2. Multiply the current number on the screen by 3.We are also given that the program "21211" converts the number 5 to the number 80. We need to determine the value of a.
To solve this problem, we can follow the same approach as in the previous problem.
Let's start with the number 5 and execute the program: 1. Add a: The number becomes 5 + a.


Похожие вопросы
Топ вопросов за вчера в категории Информатика
Последние заданные вопросы в категории Информатика
-
Математика
-
Литература
-
Алгебра
-
Русский язык
-
Геометрия
-
Английский язык
-
Химия
-
Физика
-
Биология
-
Другие предметы
-
История
-
Обществознание
-
Окружающий мир
-
География
-
Українська мова
-
Информатика
-
Українська література
-
Қазақ тiлi
-
Экономика
-
Музыка
-
Право
-
Беларуская мова
-
Французский язык
-
Немецкий язык
-
МХК
-
ОБЖ
-
Психология
-
Физкультура и спорт
-
Астрономия
-
Кыргыз тили
-
Оʻzbek tili