7 条题解

  • 0
    @ 2022-10-29 16:05:56

    #include<bits/stdc++.h> using namespace std; int a[114514];//数组元素 int main() { float sum=0,m,n,b; cin>>m; for(int i=0;i<m;i++){ cin>>a[i]; sum+=a[i]; }

    b=float(sum)/m;
    cout<<"AVE=";
    printf("%.1f",b);
    cout<<endl;
    
    for(int k=0;k<m;k++){
    	if(a[k]>b){
    		cout<<k+1<<":"<<a[k]<<endl;
    	}
    	
    }
    return 0;
    

    }

    【入门】找找谁的身高超过全家的平均身高

    信息

    ID
    155
    时间
    1000ms
    内存
    16MiB
    难度
    3
    标签
    递交数
    88
    已通过
    49
    上传者