1 #include<stdio.h>
 2 int main()
 3 {
 4     int i;
 5     float a[13];
 6     for(i=1;i<13;i++)
 7     scanf("%f",&a[i]);
 8     for(i=1,a[0]=0;i<13;i++)
 9     a[0]+=a[i];
10     printf("%.2f\n",a[0]/12);
11     return 0;
12 }

相关文章:

  • 2021-10-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-09
猜你喜欢
  • 2021-06-09
  • 2021-11-16
  • 2021-08-26
  • 2021-12-07
  • 2022-12-23
  • 2022-12-23
  • 2021-11-10
相关资源
相似解决方案