М
Молодежь
К
Компьютеры-и-электроника
Д
Дом-и-сад
С
Стиль-и-уход-за-собой
П
Праздники-и-традиции
Т
Транспорт
П
Путешествия
С
Семейная-жизнь
Ф
Философия-и-религия
Б
Без категории
М
Мир-работы
Х
Хобби-и-рукоделие
И
Искусство-и-развлечения
В
Взаимоотношения
З
Здоровье
К
Кулинария-и-гостеприимство
Ф
Финансы-и-бизнес
П
Питомцы-и-животные
О
Образование
О
Образование-и-коммуникации
Marmaladee
Marmaladee
22.04.2021 07:22 •  Английский язык

Нужно найти ошибку : this is a new car over there . и предложение tom and susan are from canadians .

👇
Ответ:
plotnikovpetr
plotnikovpetr
22.04.2021
This is a new car there . Tom and Susan are Canadians
4,5(69 оценок)
Открыть все ответы
Ответ:
Although I do not like learning, school-source znaniy.Bez secondary education did not enroll in an institution of higher education, and therefore did not find a good school rabotu.V I have many friends and enjoy znakomyh.Mne teachers (subjects) .Mne like (objects). The school has many pros and cons, while I'm in school, I notice there are many disadvantages, for example the fact that you need every day to do your homework, you must get up early, but when I was released from the school and will do in any higher institution, I might understand that the school is not so ploho.Ne whether schools, I would not be able to properly express their thoughts, many schools helps zhizni.Potomu Thu about in school we learn to read, write, count and solve problems knowledge of physics and chemistry, not too little vazhny.Inostrannye languages ​​are needed so that we can communicate with people from other countries. 

Overall I feel about school more neutral than negative.
4,7(99 оценок)
Ответ:
denisovavara11
denisovavara11
22.04.2021

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;   // конец программы

4,5(7 оценок)
Новые ответы от MOGZ: Английский язык
logo
Вход Регистрация
Что ты хочешь узнать?
Спроси Mozg
Открыть лучший ответ