UVA 10327 - Flip Sort

Problem PDF

Solution:

#include
int main()
{
int s,temp,i,j,a[1020],c;
while(scanf("%d",&s)==1)
{
c=0;
for(i=0;i=0;i--)
for(j=0;j<=i;j++)
{
if(a[j]>a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
c++;
}
}
printf("Minimum exchange operations : %d\n",c);
}
return 0;
}
https://github.com/Shipu/OnlineJudgeProblemSolutionWithCPlusPlus/tree/master/uva/10327/10327.cpp