// You are using GCC #include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int arr[n]; for(int i=0;i<n;i++){ cin>>arr[i]; } cout<<"sorted array after selection sort:"; for(int i=0;i<n;i++){ int index=i; for(int j=i+1;j<n;j++){ if(arr[j]<arr[index] || arr[j]==arr[index]){ index=j; } } swap(arr[i],arr[index]); cout<<arr[i]<<" "; } return 0; }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter