有以下程序, #include <stdio.h> i
有以下程序,
#include <stdio.h>
int main()
char a[5][10]={"one","tw0","three","four","five"};
int i,j;
char t, 、 for(i=0;i<4;i++) for(j=i+1;j<5;j++) if(a[i][O]>a[j][0])
{t=a[i][O];a[i][O]=a[j][O];a[j][O]=t;)
puts(a[1]);
}程序运行后的输出结果是( )。
答案
A