+ 1
Имеются данные о стоимости 1 кг 30 видов конфет.Расположить их 1) по убыванию 2) по возрастанию
3 Answers
+ 12
// =============================
// CodeName : Simple sort
// Done for : Aidana
// By : Babak Sheykhan
// Date : Dec 12, 2017
// =============================
#include <iostream>
#include <cstdlib>
#include <ctime>
#include <vector> // std::vector
#include <algorithm> // std::sort, std::reverse
void print(std::vector<double> const &v);
int main() {
srand(static_cast<unsigned>(time(0)));
std::vector<double> prices(10);
for (auto &fill : prices) fill = (120 + rand() % (501 - 120)) * 0.1;
std::cout << "Unsorted list of prices:\n";
print(prices);
std::cout << "\n\nAscending sort...\n\n";
std::sort(prices.begin(), prices.end());
print(prices);
std::cout << "\n\nDescending sort...\n\n";
std::reverse(prices.begin(), prices.end());
print(prices);
}
void print(std::vector<double> const &v) {
for (const auto &i : v) std::cout << "quot; << i << std::endl;
}
[ https://code.sololearn.com/cx3GJ2Ig9Ww6/?ref=app ]
+ 1
нам задали по с++
0
мало данных, и это не язык программирования