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

Перепишите вопросы и дайте письменные ответы.
1. When was the railway station building designed by K.Thon erected?
2. Where is Tver situated?
3. The Tver railway station building is similar to many other significant stations, isn’t it?
4. What famous buildings did Russian architect M. Kazakov design?

Ответы

Автор ответа: Lina2411
1
1. Когда здание вокзала железной дороги по проекту KThon возведена?
2. Где Тверь расположена?
3. Здание железнодорожного вокзала в Твери похож на многих других значимых станций, не так ли?
4. Кем из известных зданий сделал русский архитектор MKazakov дизайн?
1. Не знаю
2.Located on the banks of the Volga River near the confluence of the rivers and Tvertsa Tmaka, at 177.6 km north-west of Moscow.
Расположен на берегах реки Волга в районе впадения в неё рек Тверцы и Тьмаки, в 177,6 км к северо-западу от Москвы.
3.Не Знаю
4.Matvey Kazakov (1738 -1812) - Russian architect who during the reign of Catherine II rebuilt the center of Moscow in the Palladian style. One of the largest representatives of Russian pseudo. Developer projects typical building.Матве́й Фёдорович Казако́в (1738[5]—1812) — русский архитектор, который в годы правления Екатерины II перестроил центр Москвы в палладианском стиле[6]. Один из крупнейших представителей русской псевдоготики. Разработчик проектов типовой застройки.
Похожие вопросы
Предмет: Информатика, автор: apelsinn00
Есть вот такой код, нужно в него добавить каким либо образом Изготовителя(чтобы в массиве на каждой строке первым было слово и чтобы было хотя бы 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";
}
}
Предмет: Русский язык, автор: polina262692