/* bubble sort */ #include #include using namespace std; int main(int argc, char *argv[]) { int SIZE=10; int a[] = {62, 18, 24, 15, 100, 27, 89, 38, 45, 34}; int i, j, k, minpos, pass, temp; cout<<"DEDOMENOS PINAKAS EINAI \n"; for (i = 0; i <= SIZE - 1; i++) cout<