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

Помогите!Match these sentence halves.
1 According to the latest report our
consultant has submitted,
2 Firstly, the timing is far from ideal,
3 In addition, the same employees have
sometimes expressed dissatisfaction
4 In my opinion, there are two main
5 Secondly, some employees seem unhappy
6 This is particularly true for seminars
a) held on Mondays and Fridays.
b) at the way Jeffrey Hiley
conducts the workshops.
c) attendance at retraining
seminars is declining.
d) especially on Friday after
a full working week.
e) reasons for this situation.
f) that they were not involved
in choosing the topics.

Ответы

Автор ответа: sun4life
5
1 - c
2 - d
3 - b
4 - e
5 - f
6 - a

ivankal: Большое спасибо если вам не трудно помогите
ivankal: Match each sentence with the correct function on the right.
1 As agreed, our consultant will be arriving on
Wednesday, April 30.
2 Could you please send us some information
about the change of ownership at Orseca?
ivankal: 3 If you require any assistance with your
relocation, do not hesitate to contact us.
4 This is to let you know that plans for the
retraining of our admin staff are under way.
5 We are sorry for any inconvenience you may
suffer as a result of this cancellation.
6 We should relaunch our Davina mineral water
under a different name.
ivankal: a) apologising
b) confirming
c) informing
d) offering
e) requesting
f) suggesting
sun4life: Так сделали ж уже:)
Автор ответа: 01ln1011asxxa
0
1-с
2-d
3-b
4-e
5-a
6-fcdbeaf это по очереди

01ln1011asxxa: Ой сорит
C
D
B
E
A
F
Похожие вопросы
Предмет: Математика, автор: krasilnikovavarya7
Предмет: Информатика, автор: anastasiyafomina353
СРОЧНО! С++ Перетворіть код так щоб виводилось 5 найменших за кількістю товарів. Кількість товарів в структурі - а.num.

Тут вже відсортовані записи у файлі, попрацюйте тільки з виведенням 5 найменших за кількістю товарів. Додайте ще, якщо 5 і 6 записи мають однакову кількість, виводилось і 6 запис( або інші записи, які дорівнюють 5 запису)

void FiveProductLeast(const char* fn) {
Handmade a,c;
int n = 0;
int amount = AmountTovar(fn);
fopen_s(&handmade_store, fn, "r+b");
do {
bool flag = false;
fread(&a, sizeof(Handmade), 1, handmade_store);
for (size_t i = 0; i < amount - 1; i++)
{
fseek(handmade_store, sizeof(Handmade) * (i + 1), SEEK_SET);
fread(&c, sizeof(Handmade), 1, handmade_store);
if (a.num > c.num) {
fseek(handmade_store, sizeof(Handmade) * i, SEEK_SET);
fwrite(&c, sizeof(Handmade), 1, handmade_store);
fwrite(&a, sizeof(Handmade), 1, handmade_store);
flag = true;
}
else {
a = c;
}
}
if (!flag) {
break;
}
else {
rewind(handmade_store);
}
} while (true);
fclose(handmade_store);
Hat();
fopen_s(&handmade_store, fn, "rb");
while (fread(&a, sizeof(Handmade), 1, handmade_store)) {
n++;
for (int i = 0; i < 1; i++) {
cout << "| " << setw(3) << right << n << " "
<< "| " << setw(14) << left << a.code << " "
<< "| " << setw(26) << left << a.tovar << " "
<< "| " << setw(13) << left << a.category << " "
<< "| " << setw(17) << left << a.oznaka << " "
<< "| " << setw(8) << right << fixed << setprecision(3) << a.len << " "
<< "| " << setw(5) << right << a.num << " "
<< "| " << setw(17) << left << a.country << " "
<< "| " << setw(9) << right << setprecision(2) << a.cost << " "
<< " |" << endl;
}
}
Line();
fclose(handmade_store);
}​