#include #include #include #include #include #include void SelectionSort(long double *array, unsigned short amount); void SelectionSort(int *array, unsigned short amount); int main() { std::string input; unsigned short amount = 1; std::cout << "Gib die Anzahl der Zahlen ein: "; getline(std::cin, input); std::stringstream(input) >> amount; std::cout << "\nM\x94 \bchtest du mit zuf\x84lligen Zahlen arbeiten? y/n "; getline(std::cin, input); if(input == "y" || input == "Y") { int *array = new int[amount]; srand(time(0)); for(unsigned short idx = 0; idx < amount; idx++) array[idx] = rand()%100; SelectionSort(array, amount); delete[] array; } else { long double *array = new long double[amount]; for(unsigned short idx = 0; idx < amount; idx++) { std::cout << "Gib die " << idx+1 << ". Zahl ein: "; getline(std::cin,input); std::stringstream(input) >> array[idx]; } SelectionSort(array, amount); delete[] array; } getch(); return(0); } void SelectionSort(long double *array, unsigned short amount) { std::cout << "\n"; for(unsigned short idx =0; idx