#include < iostream> using std: : cout; using std: : endl;
void move(int*, const int); void print(const int*, const int);
int main(){ const int arraysize = 10; int a[arraysize] = { 4, 7, 3, 9, 2, 1, 8, 6, 5, 10 };
cout < < "array before modify: " < < endl; print(a, arraysize);
move(a, arraysize);
cout < < "\narray after modify: " < < endl; print(a, arraysize);
return 0; }
void print(const int *a, const int size){ for(int i = 0; i < size; i++) { cout < < a[i] < < ' '; }
cout < < endl; }
void move(int *a, const int size){ int smallest = 0; int largest = 0; int temp;
for(int i = 1; i < size; i++) { if(a[smallest] > a[i]) { smallest = i; }
if(a[largest] < a[i]) { largest = i; } }
temp = a[smallest]; a[smallest] = a[largest]; a[largest] = temp; }
Поделитесь своими знаниями, ответьте на вопрос:
Расположите устройства внешней памяти в порядке убывания их объёма: cd-rom, жесткий диск, дискета, dvd-rom/