3. Слой для записи намагничивается пишущей головкой, положение пишущей головки управляется лазером.
Информацыоное общество,алгаритм и его формальное исполнение
#include <iostream>
#include <string>
int main()
{
std::string str;
getline(std::cin,str);
const int n = 5;
std::string c[n] = { "=", "==", "!=", "a +=", "a -=" };
std::string psl[n] = { ": =", "=", "#", "a = a +", "a = a -" };
for (unsigned int i = n-1; i > 0; i--){
int p = str.find(c[i]);
while (p > 0)
{
str.replace(p, c[i].size(), psl[i]);
p = str.find(c[i]);
}
}
std::cout << str;
return 0;
<span>}</span>
Var
x, y, z, max: integer;
begin
write('Введите x - ');
readln(x);
write('Введите y - ');
readln(y);
write('Введите z - ');
readln(z);
if x >= y then
max := x
else
max := y;
if z > max then
max := z;
if y <> max then writeln('Высказывание истинное')
else writeln('Высказывание ложное');
end.
Формула
y=(2x-17√(x-7))/|3x-12|
Программа
Program y
var x, y: real
BEGIN
write ('Vvedite x');
readln (x);
y=(2*x-17*sqrt(x-7))/abs(3*x-12);
writeln ("y = ", y);
END.