1. When you travel abroad, ... A you a ren't expected to bring anything back. B you shouldn't bring back souvenirs.
C you are expected to bring back souvenirs for close friends.
D people would be annoyed if you gave them a souvenir.
2. A gift from a foreigner which is typical of his or her homeland, would...
A be unwelcome.
B be received with pleasure.
3. At Christmas, it is customary to give presents
to ...
A business colleagues,
B members of the family only.
D
C people who have served you during the year.
D close friends and family only.
4. In the writer's opinion, gift-giving in the US
A not an important social custom.
B culturally unacceptable.
cause embarassment,
annoy the receiver.
C only traditional within the family. D only acceptable at Christmas.
5. ... try to bring back little souvenirs for close friends." Is a close friend someone...
A you have only just met?
B you know very well?
you haven't seen for a long time? D of your own sex?
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; // конец программы
Приметы и суеверия появились много веков, и даже тысячелетий назад. Древние люди пытались объяснить мир так, каким они его себе представляли. Это послужило причиной появления многочисленных суеверий и верований. И, несмотря на то, что большинство из них практически не содержат истины, люди продолжают им верить, и так оно и должно быть. Человек не может знать всего, а значит, он будет продолжать строить догадки и выдвигать гипотезы о том, как устроен мир. Все мы немного суеверны. Это заложено в нас природой. И верить в суеверия,или нет,это личное решение каждого.