美文网首页
CodeFoeces-1234A

CodeFoeces-1234A

作者: ss5smi | 来源:发表于2019-10-05 17:40 被阅读0次

题目

原题链接:A. Equalize Prices Again

题意

求所给数列中的评均值并向上取整即可。

代码

#include<stdio.h>
#include<math.h>
int main(){
    int q,n,a[100];
    scanf("%d",&q);
    while(q--){
        int sum = 0;
        scanf("%d",&n);
        for(int i=0;i<n;i++){
            int t = 0;
            scanf("%d",&t);
            sum += t;
        }
        float summ = (float)sum;
        float cnt = (float)n;
        printf("%.0f\n",ceil(summ/cnt));
    }
    return 0;
}

相关文章

  • CodeFoeces-1234A

    题目 原题链接:A. Equalize Prices Again 题意 求所给数列中的评均值并向上取整即可。 代码

网友评论

      本文标题:CodeFoeces-1234A

      本文链接:https://www.haomeiwen.com/subject/fkwnkctx.html