#include #include using namespace std; void isort(int n, int a[]) { int i,j,v; for ( i = 0 ; i v) && (j > 0)) { a[j] = a[j-1]; j = j - 1; } a[j] = v; for ( j = 0 ; j> n; cout <