вариант на c++. в данном случае отличия с от с++ минимальны, возможно, что тут только потребуется заменить cin на scanf и cout на printf. ну и библиотеки.
числа вводятся в 4-ёх элементный массив, потом он сортируется и выводится.
#include < iostream> using std: : cout; using std: : cin; using std: : endl;
void sort(int*, const int);
int main(){ const int arraysize = 4; int a[arraysize];
cout < < "enter the four numbers: ";
for(int i = 0; i < arraysize; i++) { cin > > a[i]; }
cout < < endl;
sort(a, arraysize);
return 0; }
void sort(int *a, const int size){ int temp, smallest;
for(int i = 0; i < size - 1; i++) { smallest = i;
for(int j = i + 1; j < size; j++) { if(a[smallest] > a[j]) { smallest = j; } }
temp = a[i]; a[i] = a[smallest]; a[smallest] = temp; }
for(int i = 0; i < size; i++) { cout < < a[i] < < ' '; }
cout < < endl; }
опять вся табуляция
Поделитесь своими знаниями, ответьте на вопрос:
Реши примеры .запиши ответы к ним с азбуки морзе 98-25= 84+8= 77-16= 61+19=