Предмет: Английский язык, автор: jawbananieja

Write questions asking about the missing parts of
the sentences.
0 At the moment I’m reading [_____].
What are you reading at the moment?
1 Katie has bought [_____] today.
________________________________________
______________________ ?
2 [_____] is thinking of moving to London.
________________________________________
______________________ ?
3 I’m talking to [_____].
________________________________________
______________________ ?
4 [_____] is the longest word in English.
________________________________________
______________________ ?
5 Jason wants to study [_____] at university.
________________________________________
______________________ ?

Ответы

Автор ответа: bbbb18754
1
0. What book are you currently reading?
1. What has Katie bought today?
2. Who is thinking of moving to London?
3. Who are you talking to?
4. What is the longest word in English?
5. What does Jason want to study at university?
Похожие вопросы
Предмет: Информатика, автор: someonexpert
Помогите пожалуйста с блок схемами алгоритмов ! Даны задачи и готовые коды к ним на языке С. Нужно построить блок схемы алгоритмов решения этих задач. Умоляю, даю максимальное количество баллов

Задача 1
Сформировать квадратную матрицу порядка n

код:

#include <stdio.h>
#include <stdlib.h>
int main() {
int n;
printf("Enter matrix order: ");
scanf_s("%d", &n);
// Checking the correctness of n
if (n % 2 == 0 n < 0) {
printf("Please enter a correct value for n\n");
return 1;
}
// Allocating memory for the matrix
int** matrix = (int**)malloc(n * sizeof(int*));
for (int i = 0; i < n; i++) {
matrix[i] = (int*)malloc(n * sizeof(int));
}
// Filling the matrix
int count = 1;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i == n / 2 j == n / 2) {
matrix[i][j] = count++;
}
else {
matrix[i][j] = 0;
}
}
}
// Output matrix
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
printf("%2d ", matrix[i][j]);
}
printf("\n");
}
// Free memory
for (int i = 0; i < n; i++) {
free(matrix[i]);
}
free(matrix);
return 0;
}

Задача 2
Дана матрица размера M*N. Найти минимальный среди максимальных элементов
ее столбцов. Предположить вывод начальной матрицы, а также вывод
значений всех максимальных элементов столбцов матрицы

код:

#include <stdio.h>
int main() {
int m, n;
printf("Enter count of lines: ");
scanf_s("%d", &m);
printf("Enter count of columns: ");
scanf_s("%d", &n);
if (m < 0 || n < 0) {
printf("Input correct values");
return 1;
}
int matrix[100][100];
printf("Input elements of matrix %dx%d:\n", m, n);
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
scanf_s("%d", &matrix[i][j]);
}
}
printf("\nInitial matrix %dx%d:\n", m, n);
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
printf("%d", matrix[i][j]);
}
printf("\n");
}
int min_col = 0;
long long min_pr = 1LL << 60;
for (int j = 0; j < n; j++) {
long long pr = 1;
for (int i = 0; i < m; i++) {
pr *= matrix[i][j];
}
if (pr < min_pr) {
min_pr = pr;
min_col = j;
}
printf("Multiplication of elements in a column %d: %lld\n", j, pr);
}
printf("\nColumn number with the smallest multiplication value: %d\n", min_col);
printf("Min.value: %lld\n", min_pr);
return 0;
}​
Предмет: Музыка, автор: leahgordhkova