To store the elements of a one-dimensional array greater than or equal to the average in another array,Elements less than the average still have the original array, and print the two arrays. #include void main() { int i,la,lb,n; float a[100],b[100],sum,av; /***********SPACE***********/ 【?】; for(i=0;i cin>>a[i]; /***********SPACE***********/ 【?】; for(i=0;i sum+=a[i]; /***********SPACE***********/ 【?】; la=lb=0; for(i=0;i if(a[i]>=av) b[lb++]=a[i]; else /***********SPACE***********/ { 【?】; } for(i=0;i cout< cout< for(i=0;i cout< }