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

Постройте программу, работая по которой машина добавит 1 к числу в 2 –ой cистеме счисления.


Постройте программу, работая по которой машина добавит 1 к числу в 2 –ой cистеме счисления.

Показать ответ
Ответ:
alexanikulina2
alexanikulina2
08.03.2022 20:12
1)
Var
n,m,max,min:integer;
Begin
write('Введите число: ');
readln(n);
min:=9;   
max:=0;
while n>0 do 
begin 
m:=n mod 10; 
if m<min then min:=m; 
if m>max then max:=m; 
n:=n div 10; end;   
writeln('Максимальное число: ',max);   
writeln('Минимальное число: ',min);
End.
2)
var
i,count: integer;
n,s:string;
begin
writeln('Введите число: ');
readln(s);
writeln('Введите цифру: ');
readln(n);
for i:=1 to length(s) do
if(s[i]=n)then
count:=count+1;
writeln('Количество раз, когда встречается цифра = ',count);
end.
0,0(0 оценок)
Ответ:
svishevaarina
svishevaarina
25.04.2023 06:04
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 #include<fstream> #include <iostream> #include<vector> #include <stack> #include<string> #include<algorithm> using namespace std; stack<int>st; int error = 0; void operation(string command) {     if (command == "DROP")     {         if (st.size() > 0)         {             st.pop(); return;         }         else         {             error = 1; return;         }     }     if (command == "SWAP")     {         if (st.size() >= 2)         {             int a = st.top();             st.pop();             int b = st.top();             st.pop();             st.push(a);             st.push(b);             return;         }         else         {             error = 1; return;         }     }     if (command == "DUP")     {         if (st.size() > 0)         {             int a = st.top();             st.push(a);             return;         }         else         {             error = 1;             return;         }     }     if (command == "OVER")     {         if (st.size() >= 2)         {             int a = st.top();             st.pop();             int b = st.top();             st.pop();             st.push(b);             st.push(a);             st.push(b);             return;         }         else         {             error = 1; return;         }     }     if (command == "+")     {         if (st.size() >= 2)         {             int a = st.top();             st.pop();             int b = st.top();             st.pop();             st.push(a + b);         }         else         {             error = 1;             return;         }     }     if (command == "-")     {         if (st.size() >= 2)         {             int a = st.top();             st.pop();             int b = st.top();             st.pop();             st.push(b - a); return;         }         else         {             error = 1;             return;         }     }     if (command == "*")     {         if (st.size() >= 2)         {             int a = st.top();             st.pop();             int b = st.top();             st.pop();             st.push(b*a); return;         }         else         {             error = 1;             return;         }       }     if (command == "/")     {         if (st.size() >= 2)         {             int a = st.top();             st.pop();             int b = st.top();             st.pop();             st.push(b/a); return;         }         else         {             error = 1;             return;         }     } } bool isnumber(string x) {     for (int i = 0; i < x.length(); i++)     {         if (x[i] > '9' || x[i] < '0')         {             return false;         }     }     return true; } int main() {     vector<int>v;     ifstream in;     ofstream out;     in.open("input.txt");     out.open("output.txt");         string command;     while (in >> command&&error != 1)     {         if (isnumber(command) == true)         {             st.push(atoi(command.c_str())); continue;         }         operation(command);     }     if (error == 1)     {         out << "ERROR"; return 0;     }     if (st.size() == 0)     {         out << "EMPTY"; return 0;     }     while (st.size() != 0)     {         v.push_back(st.top());         st.pop();     }     reverse(v.begin(), v.end());     for (int i = 0; i < v.size(); i++)     {         out << v[i] << " ";     }     in.close();     out.close(); }
0,0(0 оценок)
Популярные вопросы: Информатика
Полный доступ
Позволит учиться лучше и быстрее. Неограниченный доступ к базе и ответам от экспертов и ai-bota Оформи подписку
logo
Начни делиться знаниями
Вход Регистрация
Что ты хочешь узнать?
Спроси ai-бота