jyyeth


私信TA

用户名:jyyeth

访问量:36374

签 名:

C++学的完吗?

等  级
排  名 174
经  验 6872
参赛次数 0
文章发表 47
年  龄 0
在职情况 学生
学  校 徐州工程学院
专  业

  自我简介:



参考代码:

#include <stdio.h>
#include <malloc.h>
int main()
{
    int i,n,*a=NULL,sum=0;
    scanf("%d",&n);
    a=(int *)malloc(n*sizeof(int));
    for(i=0;i<n;i++){
        scanf("%d",&a[i]);
        sum+=*(a+i);
    }
    printf("%d\n",sum/n);
    return 0;
}



 

0.0分

0 人评分

  评论区

  • «
  • »