#include<iostream> using namespace std; int main() { int n; while(cin>>n) { int a[n]; float s=0, r; for(int i=0; i<n; i++) { cin>>a[i]; s=s+a[i]; } r=(float)s/n; for(int i=0; i<n; i++) if(a[i]<r) cout<<a[i]<<" "; cout<<endl; } return 0; }
只要s和r都是float就可以,15行的(float)可以没有