Odpowiedź:
#include <iostream>
#include <vector>
#include <algorithm>
int fun(std::vector<int> numbers, int k) {
std::sort(numbers.begin(), numbers.end()); //sortujemy tablicę
return numbers[numbers[0] + k - 1]; //zwracamy liczbę od której jest k liczb mniejszych
}
int main() {
std::vector<int> numbers = {4, 3, 2, 1};
int k;
std::cin >> k;
std::cout << fun(numbers, k);
return 0;
Wyjaśnienie:
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
#include <iostream>
#include <vector>
#include <algorithm>
int fun(std::vector<int> numbers, int k) {
std::sort(numbers.begin(), numbers.end()); //sortujemy tablicę
return numbers[numbers[0] + k - 1]; //zwracamy liczbę od której jest k liczb mniejszych
}
int main() {
std::vector<int> numbers = {4, 3, 2, 1};
int k;
std::cin >> k;
std::cout << fun(numbers, k);
return 0;
}
Wyjaśnienie: