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

нарисовать блок-схему к задаче. Виконавець малює прямокутники, розміщенні один поруч з іншим, якщо довжини сторін першого з них порівнюють а і b, а довжини сторін кожного наступного на 5 кроків більші за довжини сторін попереднього, поки площа прямокутника буде не більша за 2000.

Показать ответ
Ответ:
NekitLol234
NekitLol234
25.04.2020 01:48

1. Input devices allow you to enter information into a computer for further storage and processing, and output devices allow you to receive information from a computer.

2. Input device types: mouse, keyboard. output device types: monitor.

3. However, regardless of the forms in which they receive their inputs, all input devices must provide a computer with data thare transformed into the binary codes that the primary memory of the computer is designed to accept. This transformation is accomplished by units called I/O interfaces.

4. A reel of magnetic tape upon which the collected data are stored in binary format is an example of a human-independent output.

5. Data enter input units in forms that depend upon the particular device used. For example, data entered from a keyboard in a manner similar to typing, and this differs from the way that data are entered by bar-code scanner.

6. The major differences between devices are the media that they use and the speed with which they are able to transfer data to or from primary storage.

7. It should be noted that the high-speed devices are entirely electronic in their operation or magnetic media that can be moved at high speed.

8. The low-speed devices are those with complex mechanical motion or operate at the speed of a human operator.

Объяснение:

0,0(0 оценок)
Ответ:
Чикчирик12
Чикчирик12
25.04.2020 01:48

Решение, которое перебирает

Большие буквы стоят в таблице кодов подряд, то есть, образуют диапазон, нам требуется проверить лежит ли буква в заданном диапазоне. Для русских букв проверять будем так:

if ('А' <= str[0] && str[0] <= 'Я'), для английских нужно просто поменять буквы на английские.

Пример для русских букв:

Программа выводит заглавные буквы

#include <iostream>

#include <string>

#include <windows.h>

signed main() {

SetConsoleCP(1251);

SetConsoleOutputCP(1251);

std::string str;

getline(std::cin, str);

if ('А' <= str[0] && str[0] <= 'Я')

 std::cout << "Первая буква является заглавной!";

else

 std::cout << "Этот символ не является заглавной буквой!";

return 0;

}

0,0(0 оценок)
Популярные вопросы: Информатика
Полный доступ
Позволит учиться лучше и быстрее. Неограниченный доступ к базе и ответам от экспертов и ai-bota Оформи подписку
logo
Начни делиться знаниями
Вход Регистрация
Что ты хочешь узнать?
Спроси ai-бота