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

Выберите предложения, которые содержат инфинитивную конструкцию Complex Object. Предложения переведите.
1) The engineers want further research to be conducted with new motors.
2) Nowadays any new car is to meet all requirements of passengers.
3) Some decades ago the world learnt a record speed of 330 kph have been attained by the electric locomotive.
4) We know the railways to use the electric rolling stock on the most heavily used trunk lines.
5) It was decide to finish the car interior with plastics.

Ответы

Автор ответа: VeronikaSurmano
0
Перевод:
1) Инженеры хотят дальнейших исследований, которые будут проводиться с новыми двигателями.
2) В настоящее время любой новый автомобиль должен соответствовать всем требованиям пассажиров.
3) Несколько десятилетий назад мир узнал рекорд скорости 330 км в час, были достигнуты с помощью электровоза.
4) Мы знаем, железные дороги, чтобы использовать электрический подвижного состава на наиболее интенсивно используемых магистральных линий.
5) Это было решить, чтобы закончить интерьер автомобиля с пластиками.
Похожие вопросы
Предмет: Информатика, автор: 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";
}
}​