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

The Smart Little Bird
There was a little smart Bird in a thee. A big grey Cat came to the thee. He saw the little Bird and wanted to eat her. "I'll have the bird for my breakfast, "thought the Cat.
"Good morning, Miss Bird," said the Cat.
"Good morning, Mr Cat," said the Bird.
"Good news!" said the Cat.
"What news?" asked the Bird.
The Cat said, "Very good news, my little Bird! All animals are friends now! We are friends: all cats, doga and birds. Come to me! I want to speak to you."
But the little Bird was very smart.
"Of course, you are my friend. But I see many dogs and they are on their way to tris thee."
"Oh, dogs! I must go home!" said the Cat.
"Oh, why, my dear friend? The dogs are our friends, too," said the Bird.
" I think, they don't know the news," said the Cat and ran away.


find in the text and read out the sentences in past simple in present simple in future simple

Ответы

Автор ответа: KSUSHAA111
7
маленькая умная птичка.
Жила-была маленькая умная птичка на дереве. К дереву подошел большой серый кот. Он увидел маленькую птичку и захотел ее съесть."Я буду есть ее на завтрак" подумал Кот.
"Доброе утро, мисс Птичка" сказал Кот.
"Доброе утро, мистер Кот" сказала Птичка.
"Хорошие новости!!" сказал Кот.
"Какие новости??" спросила Птичка.
Кот сказал, "Очень хорошие новости, моя маленькая Птичка!! Все животные сейчас друзья!! И мы друзья: все кошки, собаки и птицы. Иди ко мне, я хочу поговорить с тобой.".
Но маленькая Птичка была очень умной.
"Конечно, ты мой друг. Но я вижу стаю собак и они идут к этому дереву".
"Ох собаки! Я должен идти домой!" сказал Кот.
"Мой дорогой друг? Ведь собаки наши друзья тоже" сказала Птичка.
"Я думаю что они не знают эти новости" сказал Кот и убежал.

Аноним: Спасибо за перевод теперь всё яснее!
Похожие вопросы
Предмет: Информатика, автор: whatisslove
Есть вот такой код, нужно в него добавить каким либо образом Изготовителя(чтобы в массиве на каждой строке первым было слово и чтобы в общем изготовителей было хотя бы 3 разных) хоть рандомный набор букв, хоть самому записывать, хоть записать варианты и потом сделать рандомный выбор из них, как угодно главное тоже через класс
Даю 50 баллов

#include
#include

const int N=10;

class Commutator
{
public:
int portCounter;
int portSpeed;
int matrixSpeedCommunication;
float price;

Commutator ()
{
};

Commutator (int portCounter_, int portSpeed_, int matrixSpeedCommunication_, float price_)
{
portCounter = portCounter_;
portSpeed = portSpeed_;
matrixSpeedCommunication = matrixSpeedCommunication_;
price = price_;
}
};

int main()
{
srand(time(nullptr));

Commutator commutatorArray[N];
for (int i = 0; i < N; ++i)
{
commutatorArray[i] = *new Commutator (rand() % 20 + 5, rand() % 4000 + 2000, rand() % 100 + 20, 0);
commutatorArray[i].price = commutatorArray[i].portCounter * 2.0 + commutatorArray[i].matrixSpeedCommunication * 1.5 + commutatorArray[i].portSpeed * 1.2;
std::cout <<"["<< i << "] " << commutatorArray[i].portCounter << "; " << commutatorArray[i].matrixSpeedCommunication << "; " << commutatorArray[i].portSpeed << "; " << commutatorArray[i].price << "\n";
}
Commutator bestPriceArray[N];
Commutator bestPortCounter[N];
std::copy(commutatorArray, commutatorArray+N, bestPriceArray);
std::copy(commutatorArray, commutatorArray+N, bestPortCounter);

//Sort by price
std::sort(bestPriceArray, bestPriceArray+N, [] (const Commutator & a, const Commutator & b) -> bool
{
return a.price > b.price;
});

//Sort by portNumber
std::sort(bestPortCounter, bestPortCounter+N, [] (const Commutator & a, const Commutator & b) -> bool
{
return a.portCounter < b.portCounter;
});

std::cout<<"Best price:\n";
for (int i = 1; i < 6; ++i)
{
std::cout << "[" << i << "] " << bestPriceArray[N-i].portCounter << "; " << bestPriceArray[N-i].matrixSpeedCommunication << "; " << bestPriceArray[N-i].portSpeed << "; " << bestPriceArray[N-i].price << "\n";
}
std::cout<<"Best port counter:\n";
for (int i = 1; i < 6; ++i)
{
std::cout << "[" << i << "] " << bestPortCounter[N-i].portCounter << "; " << bestPortCounter[N-i].matrixSpeedCommunication << "; " << bestPortCounter[N-i].portSpeed << "; " << bestPortCounter[N-i].price << "\n";
}
}​