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

Choose a problem from 1b. Discuss the following. a) the problem ( describe the situation)
b) what you are going to do
c) who will do it, whose help you need
d) how you are going to get support
e) what things you need.​

Показать ответ
Ответ:
arteommartiashev
arteommartiashev
27.01.2020 10:26

I’ll never forget …having sailed (sail) down the Volga on that lovely summer day.

I am so sorry; I forgot …letting (let) you know.

Don’t forget …to remind (remind) them about the party.  

I remember …having seen (see) you somewhere.  

Did you remember …to water.. (water) the plants today?  

I’m sorry …………to…interruping……….. (interrupt), but can I ask you something?

Bob was sorry for …………has……shout…….. (shout) at his little sister.

He stopped ……………to smoke……….. (smoke) when he realised how dangerous it was.

Amanda stopped ………………his …….. (have) a quick snack and then continued translating the article.

\

You should try ……………exercising……….. (exercise), you may feel better.

Объяснение:

0,0(0 оценок)
Ответ:
vdv2001891
vdv2001891
28.05.2021 14:47

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

#include <stdio.h>

#include <stdlib.h>     // предоставляет rand() и srand()

#include <time.h>       // предоставляет time()

 

// число строк в массиве:

#define M 5

// длина каждой строки:

#define N 7

 

int main ()

{

   srand(time(NULL));      // новая точка отсчета рнд

   int B[M][N];            // массив

   int cnt;                // число отрицательных

   int i, j;

 

   // заполняем массив случайными:

   for (i=0; i<M; i++)

       for (j=0; j<N; j++)

           B[i][j] = rand() %21 - 10;

 

   // считаем отрицательные:

   for (i=0; i<N; i++)

   {

       cnt = 0;        // перед каждым новым столбцом сбрасываем счетчик отрицательных

       for (j=0; j<M; j++)

           if (B[i][j] < 0) cnt++;

       printf("column #%i, count is: %d\n", i, cnt);

   }

 

   return 0;   // конец программы

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