填空题

下面程序的功能是将字符串a下标值为偶数的元素由小到大排序,其他元素不变,请填空。
#include<stdio.h>
main()
char a[]="labchmfye",t;
int i,j;
for(i=0;i<7;i+=2)
for(j=i+2;j<9; 【12】 )
if( 【13】 )
t=a[i];a[i]=a[j];a[j]=t;

puts(a);
printf("\n");

【参考答案】

[12] j+=2
[13] a[i]>a[j]