qfedu-basic-level/day8/homework/h20.cpp

39 lines
868 B
C++
Raw Permalink Normal View History

2023-06-24 10:01:33 +08:00
// 输入一个整数 n然后输入 n 个整数,输出其中所有能被 3 或 5 但不能被同时整除的数的平均值。
#include <iostream>
using namespace std;
int main()
{
int n;
int *nums = new int[n];
int i = 0;
int sum = 0; // 和
int cnt = 0; // 计数器
cout << "请输入整数 n: ";
cin >> n;
cout << "请输入" << n << "个整数: ";
while (i < n)
{
cin >> nums[i];
i++;
}
while (--n >= 0)
{
if (nums[n] % 3 == 0 && nums[n] % 5 == 0)
continue;
else if (nums[n] % 3 == 0 || nums[n] % 5 == 0)
{
cnt++;
sum += nums[n];
}
else
continue;
}
cout << "输入的整数中所有能被 3 或 5 但不能被同时整除的数的平均值: " << sum / (double)cnt << endl;
return 0;
}