Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
2363 陶俊宸 找找谁的身高超过全班的平均身高 C++ 解答错误 0 0 MS 252 KB 248 2019-11-23 20:39:45

Tests(0/1):


#include<iostream> int main(){ short a,b[101],i; float c=0; scanf("%hd",&a); for (i=1;i<=a;i++) { scanf("%hd",&b[i]); c+=b[i]; } c/=a; for (i=1;i<=a;i++) { if (b[i]>c) { printf("%hd:%hd ",i,b[i]); } } return 0; }


测评信息: