Y


私信TA

用户名:uq_70775948495

访问量:45

签 名:

等  级
排  名 10761
经  验 1065
参赛次数 0
文章发表 8
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:
看到别人题解可以用double a 来代替int a[100];
注意事项:

参考代码:

#include<stdio.h>

int main()

{

    int n;

    int sum = 0;

    int i = 0;

    scanf("%d",&n);

    int b = n;

    int a[100]={0};

    while(n)

    {

        scanf("%d",&a[i]);

        n--;

        sum+=a[i];

        i++;

    }

    printf("%.2f",(float)sum/(float)b);

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »