// Sectionsort.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <vector> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { int i,j,n,loc,temp,min,a[30]; printf("Enter the number of elements:"); scanf("%d",&n); printf("\nEnter the elements\n"); for(i=0;i<n;i++) { scanf("%d",&a[i]); } for(i=0;i<n-1;i++) { min=a[i]; loc=i; for(j=i+1;j<n;j++) { if(min>a[j]) { min=a[j]; loc=j; } ...
Comments
Post a Comment