1) He said, "I have fallen ill"
2) They said, "Tom didn't come to school yesterday"
3) He said, "I won't come to the office until Monday"
4) She said, "I'm all right"
5) My sister said, "I have seen this film on TV"
6) She said, "I've just met my old school friend"
ответ:My favorite holiday is a New Year.I like this holiday because I recieve presents.I celebrate this holiday with my family.We decorate the flat and a New Year tree.We cook different dishes.Then we visit friends and relatives. We sit at the table and watch TV.After 0.00 o'clock we clink glasses and give presents.
Перевод:
Мой любимый праздник Новый Год.Я люблю этот праздник потому что получаю подарки.Я праздную этот праздник со своей семьей. Мы украшаем квартиру и Рождественскую ёлку.Мы готовим разные блюда.После мы приглашаем друзей и родственников.Мы сидим за столом и смотрим телевизор. После 0.00 часов мы чокаемся и дарим подарки.
П
Объяснение:
ответ:var
a, b, sum, i: LongInt;
begin
Write('a='); ReadLn(a);
repeat
Write('b='); ReadLn(b);
until (b > a);
sum := 0;
for i := a to b do
if (Not Odd(i))
then
Inc(sum, i);
WriteLn('sum=', sum);
sum := 0; i := a;
if (Odd(a))
then
Inc(i);
while (i <= b) do
begin
Inc(sum, i);
Inc(i, 2);
end;
WriteLn('sum2=', sum);
sum := 0; i := a;
if (Odd(a))
then
Inc(i);
repeat
Inc(sum, i);
Inc(i, 2);
until (i > b);
WriteLn('sum3=', sum);
end.
Объяснение:
Поделитесь своими знаниями, ответьте на вопрос:
Превратите следующие предложения в косвенную речь 1) He told me he had fallen ill. 2) They told me that Tom had not come to school the day before 3) He said he would not come to the office until Monday. 4) She said that she was all right. 5) My sister said that she had seen that film on TV. 6) She said that she had just met her old school friend.
1) He told me: “i have fallen ill”.
2) They told me: “ Tom has not come to school yesterday”.
3) He said: “i will not come to the office until Monday”.
4) She said: “i am all right”.
5) My sister said: “i have seen that film on TV.
6) She said: “i have just met my old school friend”.
Объяснение: