DSTJZ


私信TA

用户名:dotcpp0721777

访问量:9139

签 名:

时间可以解决许多问题

等  级
排  名 48
经  验 12041
参赛次数 13
文章发表 324
年  龄 18
在职情况 学生
学  校 狗熊岭23届毕业生
专  业

  自我简介:


参考代码:

#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{   int n;
    cin >> n;
    int sum = 0;
    float res = 0;
    int m = n;
    while(n--)
    {   int t;
        cin >> t;
        sum += t;
    }
    printf("%.2f", (float)sum / m);
    return 0;
}


 

0.0分

6 人评分

  评论区

#include<iostream>
#include<vector>
using namespace std;
//#include<cstdio>
//#include<math.h>
int main(){
	int n,s = 0;
	double ave;
	cin >> n;
	if(n < 1 || n > 100)
		return 1;
	vector<int> a(n);
	for(int i = 0; i < n; i++){
		cin >> a[i];
		if(a[i] < 15 || a[i] > 25)
			return 1;
		s += a[i];
	}
	ave = (double)s / n;
	printf("%.2f",ave);
	
	return 0;
}这样为什么错啦
2024-01-06 21:58:30
  • «
  • 1
  • »