02a2t

ア int arraylesslast(int *a, int n, int x) { 
エ   int i = n - 1;
ト   while(i >= 0) {  
チ     if(a[i] < x) { 
ス       return i;
ウ     } 
ケ     i = i - 1;
ウ   } 
サ   return -1;
ウ }