Предмет: Русский язык, автор: xumar85

образуйте от имен существительных слова обозначающие действие предмета. запишите их.рисунок-...,город-... учитель-... строитель-.... повар-...

Ответы

Автор ответа: Hugh666
2
рисовать, городить, учить, строить,варить
Похожие вопросы
Предмет: Английский язык, автор: ĵhghhjj
Ребята ! Помогите ! срочно !
Напишите транскрипцыю текста :
The Dubai shopping festival 
A relatively new addition to the age-old tradition of global, national and local festivals, the Duhai Shopping Festival, or the DSF as it's more commonly called, is an event that offers something for everyone. It lasts for about a month, and takes place in one of the winter months every year. 
What first began as a tourist attraction in 1996 is now a 1) celebration of buying and selling that welcomes hundreds of thousands of visitors. Over 2,300 shops offer an enormous variety of goods at very low prices. 2) Festival-goers will find even more bargains at one of the most popular attractions of the DSF, the Night Souk. This is a big street market that is open from the afternoon till the small hours of the morning. There, it is customary for the shoppers to haggle with the sellers over the price of something, until both the buyer and the seller agree on a 3) satisfactory price. 
But the DSF is not only about shopping. There is a wide range of 4) activities that keep everyone in the family happy. Over the years, events such as a food festival, fashion show, carnival and a fireworks display have offered visitors an 5) enjoyable experience. The festival 6) organizers keep surprising visitors with new, bigger and better events every year. 
The Dubai Shopping Festival is a fantastic family event that combines shopping with fun and culture, and brings people from the four corners of the world together. As the slogan of the festival says: "One Family, One World, One Festival".
Предмет: Английский язык, автор: Фокси276
Предмет: Русский язык, автор: надя0909
Предмет: Информатика, автор: Апельсинка127
Помогите дописать программу в Паскаль. Задача ниже. Не знаю как сделать ее со скобками.

Напишите программу, которая вычисляет выражение, состоящее из трех чисел и двух знаков (допускаются знаки «+», «–», «*» и «/») и круглых скобок. Выражение вводится как символьная строка, все числа целые. Операция «/» выполняется как целочисленное деление (div). Пример: Введите выражение: 2*(3+45)+4 Ответ: 100

Вот что у меня есть: ( я сделала, чтобы вычисляло выражение их 3 чисел и двух знаков, но не получается сделать так, чтобы учитывались круглые скобки )
var s, s1, s2, s3, s4: string;
i, a, b, c, d, e, f: integer;
begin
Writeln('Введите строку: ');
Readln(s);
for i := 1 to length(s) do
begin
if (s[i] = '+') or (s[i] = '-') or (s[i] = '*') or (s[i] = '/') then
begin
s1 := copy(s, 1, i-1);
s2 := copy(s, i+1, length(s));
c := i;
end;
end;
for i := 1 to length(s1) do
begin
if (s1[i] = '+') or (s1[i] = '-') or (s1[i] = '*') or (s1[i] = '/') then
begin
s3 := copy(s1, 1, i-1);
s4 := copy(s1, i+1, length(s1));
e := i;
end;
end;
Val(s3, a, d);
Val(s4, b, d);
Val(s2, f, d);
if (s[e] = '/') and (s[c] = '/') then Writeln((a div b) div f);
if (s[e] = '/') and (s[c] = '*') then Writeln((a div b) * f);
if (s[e] = '+') and (s[c] = '*') then Writeln(a + (b * f));
if (s[e] = '*') and (s[c] = '*') then Writeln(a * b * f);
if (s[e] = '+') and (s[c] = '/') then Writeln(a + (b div f));
if (s[e] = '*') and (s[c] = '+') then Writeln((a * b) + f);
if (s[e] = '/') and (s[c] = '+') then Writeln((a div b) + f);
if (s[e] = '*') and (s[c] = '/') then Writeln((a * b) div f);
if (s[e] = '+') and (s[c] = '+') then Writeln(a + b + f);
if (s[e] = '-') and (s[c] = '-') then Writeln(a - b - f);
if (s[e] = '+') and (s[c] = '-') then Writeln(a + b - f);
if (s[e] = '-') and (s[c] = '+') then Writeln(a - b + f);
if (s[e] = '*') and (s[c] = '-') then Writeln((a * b) - f);
if (s[e] = '/') and (s[c] = '-') then Writeln((a div b) - f);
if (s[e] = '-') and (s[c] = '*') then Writeln(a- (b * f));
if (s[e] = '-') and (s[c] = '/') then Writeln(a - (b div f));
end.
Предмет: Математика, автор: star787