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

Write the missing words.
Буду благодарна)

Приложения:

Ответы

Автор ответа: KiskaKypitViskas
0
Перевод?
Вставьте пропущенные слова
Автор ответа: ds27
0
Hello, Jack. Can i help you?
Yes, you can, Mr Hill. I would like a book about animals.
Do you want a story book?
No, I don't. I want an information book.
Have you ever read this book?
No, I haven't read it.
If you buy this book, you will find out all about animals. 
How much does it cost?
It's 2.99.
I'm going to buy it, Mr Hill. Here is the money.
Thank you, Jack. I will put the book in a bag. Here you are.
Thank you very much. Goodbye, Mr Hill!
Goodbye, Jack!
Похожие вопросы
Предмет: Информатика, автор: kumiho9fox
Доброго времени суток. Очень срочно нужна помощь с написанием программы на языке си! Даю последние баллы! Часть задания я сделала, но вот "последний кусочек " задачи никак не получается решить. Умоляю, помогите.
задание было таким:
Дан файл тхт
1) а.out открыть файл, если его нет сообщить об этом.
2)Найти строку (/n заканчивается) с наибольшим количеством гласных букв и вывести на экран.
3)На входе 2 строки, заменить все вхождения первой строки на вторую строку.
Не получается сделать 3 пункт.
Буду очень благодарна за помощь!
вот такой код я написал:
#include <stdio.h>
#include <string.h>
#include <assert.h>
#define VOWELS "AaEeIiOoUuYy"

size_t count_vowels(const char * s)
{
size_t cnt = 0;

for (s = strpbrk(s, VOWELS); s; s = strpbrk(s + 1, VOWELS))
cnt += 1;

return cnt;
}

#define FILE_NAME "file.txt"

int main(void)
{
char str[BUFSIZ], vowelsfull[BUFSIZ];
size_t curVovels, maxVovels;
FILE * fin = fopen(FILE_NAME, "r");
assert(fin);

if (!fgets(vowelsfull, BUFSIZ, fin))
{
fprintf(stderr, "Input file is empty or read error!\n");
return (1 | fclose(fin));
}
maxVovels = count_vowels(vowelsfull);
printf("%s", vowelsfull);

while (fgets(str, BUFSIZ, fin))
{
printf("%s", str);
curVovels = count_vowels(str);
if (curVovels > maxVovels) {
maxVovels = curVovels;
strcpy(vowelsfull, str);
}
}
if (ferror(fin) | fclose(fin))
fprintf(stderr, "Something wrong with input file!\n");

printf("\n\nMost vowels full string (contains %zu vowels):\n%s", maxVovels, vowelsfull);

return 0;
}​
Предмет: Химия, автор: lehauhnevic224