М
Молодежь
К
Компьютеры-и-электроника
Д
Дом-и-сад
С
Стиль-и-уход-за-собой
П
Праздники-и-традиции
Т
Транспорт
П
Путешествия
С
Семейная-жизнь
Ф
Философия-и-религия
Б
Без категории
М
Мир-работы
Х
Хобби-и-рукоделие
И
Искусство-и-развлечения
В
Взаимоотношения
З
Здоровье
К
Кулинария-и-гостеприимство
Ф
Финансы-и-бизнес
П
Питомцы-и-животные
О
Образование
О
Образование-и-коммуникации
котёнок130
котёнок130
19.01.2021 22:23 •  Информатика

1.Database management system - is: 2. In Access, the basic object is:
3. In Access, the line is called:
4. In Access, a column called:
5. A structure of a table is:
6. In Access, there is a data type:
7. The process of creating a table in Access by choosing from existing fields: (The template tables)
8. In Access, in the template table fields delete button of the selected fields: (<.)
9. In Access, you can enter to create a table in Design view:
10. In Access field names are allowed to:
11. In Access to the field names must not contain:
12. In Access, the key field is used to:
13. In Access mode allows you to change the layout of the table, query, report:
14. Sorting is:
15. The logical OR operand is:
16. The logical operand AND means:
17. The logical operand NOT means:
18. In what menu item in Access there is a Filter: (Entries)
19. In Access, the number of types of links:
20. To link the tables use the command:
21. In Access possible to establish a connection between the tables:
22. In Access the proportion (1 - 1) corresponds to the relationship:
23. In Access the proportion (∞ - 1) corresponds to the relationship:
24. In Access sampling means is:
25. In Access to include the desired field in the request form should be:
26. In Access Expression Builder is used to:
27. In Access field names in calculated fields should be taken:
28. In Access function COUNT:
29. The Access operation of calculating the mean value:
30. In Access, the main difference between AutoForm regime in the column of the table mode:

👇
Открыть все ответы
Ответ:
Hamrod
Hamrod
19.01.2021
1. В приведенном коде ошибка. Не хватает ";" в третьей строке снизу.
2. Немного изменим ваш код и получим искомое значение x
Искомое число х = 16293

var
  x, y, a, b, k: integer;

begin
  k:=10000;
  repeat
    x:=k;
    a := 0; b := 0; y := 1;
    while x > 0 do
    begin
      if (x mod 10) mod 2 = 0
        then
        a := a * 10 + x mod 10
      else begin
        y := y * 10;
        b := b * 10 + x mod 10
      end;
      x := x div 10
    end;
    a := a * y + b;
    k := k + 1;
    until a = 26391;
    writeln(a:8, k-1:8); 
end.

 
4,4(66 оценок)
Ответ:
DarKerThanBlaCK34
DarKerThanBlaCK34
19.01.2021

55:5=11

365:11≈33(34) берём "34", чтобы перехлестнуть 365.

Так как 11-ый член является замыкающим (перехлёстывающим 365), тогда смотрим по ближайшим:

34*10=340 (340+34=374) - подходит, но это не максимум!

365 mod 10= 36, а это значит, что последующий член будет больше 365, а именно 395.

В задании сказано, что d должно быть максимальным, а "34" - это допустимое, но не максимально число, удовлетворяющее условию, даже минимальное (по результату).

Проверка:

34*11=374, значит, когда на экране выведется s:=340, n:=50, то, зайдя по следующему циклу, получится, что s:= 374, n:=55. На следующий цикл программа не пойдёт.

ответ: d=34. 

4,5(52 оценок)
Это интересно:
Новые ответы от MOGZ: Информатика
logo
Вход Регистрация
Что ты хочешь узнать?
Спроси Mozg
Открыть лучший ответ