Ученик имеет доступ к интернету со скоростью 5 кбит\с .за какое время ученик скачает с интернета файл с объемом 10 мбайт
Ответы на вопрос:
ответ:
// consoleapplication2.cpp : this file contains the 'main' function. program execution begins and ends there.
//
#include
#include
#include
using std: : vector;
using std: : cout;
using std: : random_device;
using std: : mt19937;
using std: : uniform_int_distribution;
using std: : endl;
int main()
{
// объявляем костанты и переменные
const int number_of_barrels = 90;
const int number_of_random_numbers_to_generate = 5;
const int range_from = 0;
const int range_to = number_of_barrels;
random_device rand_dev;
mt19937 generator(;
vector barrels;
cout < < "filling vector." < < endl;
for(int i = 0; i < number_of_barrels; i++) {
barrels.push_back(i+1);
}
cout < < "getting 5 random numbers from the vector and showing it on the screen: " < < endl;
for(int i = 0; i < number_of_random_numbers_to_generate; i++) {
uniform_int_distribution distr(range_from, range_to - i);
int randomnumber = distr(generator); // генерируем рандомное число
int numberat = barrels.at(randomnumber); // читаем число из вектора и иницализируем переменную numberat этим числом
barrels.erase(std: : cbegin(barrels) + randomnumber); // удаляем это число из вектора
cout < < numberat < < " "; // выводим это число на экран.
}
}
// run program: ctrl + f5 or debug > start without debugging menu
// debug program: f5 or debug > start debugging menu
// tips for getting started:
// 1. use the solution explorer window to add/manage files
// 2. use the team explorer window to connect to source control
// 3. use the output window to see build output and other messages
// 4. use the error list window to view errors
// 5. go to project > add new item to create new code files, or project > add existing item to add existing code files to the project
// 6. in the future, to open this project again, go to file > open > project and select the .sln file
объяснение:
в комментариях.
Реши свою проблему, спроси otvet5GPT
-
Быстро
Мгновенный ответ на твой вопрос -
Точно
Бот обладает знаниями во всех сферах -
Бесплатно
Задай вопрос и получи ответ бесплатно
Популярно: Информатика
-
amiranur107.05.2020 16:26
-
schegolewasofyp087l027.07.2021 04:57
-
Геймеr22802.10.2020 00:26
-
Natali888119.03.2023 18:55
-
ankateren01.07.2020 00:29
-
даданет15.04.2023 10:21
-
Яприсоединилась05.12.2022 06:52
-
akerkebaidylda26.03.2021 20:39
-
SofiaAva16.12.2022 05:47
-
саша427508.02.2021 16:24
Есть вопросы?
-
Как otvet5GPT работает?
otvet5GPT использует большую языковую модель вместе с базой данных GPT для обеспечения высококачественных образовательных результатов. otvet5GPT действует как доступный академический ресурс вне класса. -
Сколько это стоит?
Проект находиться на стадии тестирования и все услуги бесплатны. -
Могу ли я использовать otvet5GPT в школе?
Конечно! Нейросеть может помочь вам делать конспекты лекций, придумывать идеи в классе и многое другое! -
В чем отличия от ChatGPT?
otvet5GPT черпает академические источники из собственной базы данных и предназначен специально для студентов. otvet5GPT также адаптируется к вашему стилю письма, предоставляя ряд образовательных инструментов, предназначенных для улучшения обучения.