Odpowiedź:
Jest to język c++
można stworzyć tablicę z czterema elementami i użyć funkcji sort(żeby użyć tej funkcji dodaj w nagłówku #include <algorithm>)
kod:
#include <iostream>
#include <algorithm>
using namespace std;
int main(){
int tab[4];
cin >> tab[0] >> tab[1] >> tab[2] >> tab[3];
sort(tab,tab+4);
cout << tab[0] << tab[1] << tab[2] << tab[3];
}
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ź:
Jest to język c++
można stworzyć tablicę z czterema elementami i użyć funkcji sort(żeby użyć tej funkcji dodaj w nagłówku #include <algorithm>)
kod:
#include <iostream>
#include <algorithm>
using namespace std;
int main(){
int tab[4];
cin >> tab[0] >> tab[1] >> tab[2] >> tab[3];
sort(tab,tab+4);
cout << tab[0] << tab[1] << tab[2] << tab[3];
}
Wyjaśnienie: