Архитектура и организация ЭВМ
Автор: nevas2 • Октябрь 6, 2023 • Лабораторная работа • 967 Слов (4 Страниц) • 119 Просмотры
Карагандинский технический университет
им. Абылкаса Сагинова
Кафедра ИВС
Лабораторная работа №1
Дисциплина: Архетиктура и организация ЭВМ
Выполнил:
Студент группы ВТ-21-2
Джикия Д.Д.
Принял:
к.т.н., и.о.доцента
Юрченко Н.В.
Караганда 2023
Task 1. Convert whole numbers from the decimal number system:
- to binary;
- to octal;
- in hexadecimal.
Task 2. Convert integers from the binary number system:
- to octal;
- in hexadecimal;
- to decimal.
Task 3. Convert integers from the hexadecimal number system:
- to binary;
- to octal;
- to decimal.
Task 4. Add:
- binary numbers;
- octal numbers;
- hexadecimal numbers.
Task 5. Find the difference:
- binary numbers;
- octal numbers;
- hexadecimal numbers.
Task 6. Calculate the value of the expression and present it in the decimal number system.
Задание 1. Convert whole numbers from the decimal number system:
to binary: 1052 = 10000011100
1052/2 = 526 | 0
526/2 = 263 | 0
263/2 = 131 | 1
131/2 = 65 | 1
65/2 = 32 | 1
32/2 = 16 | 0
16/2 + 8 | 0
8/2 = 4 | 0
4/2 = 2 | 0
2/2 = 1 | 0
1/2 = 0 | 1
to octal: 1387 = 2553
...