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

30 lines
558 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 输入一个整数 n然后输入 n 个整数,输出其中所有偶数的和。
#include <iostream>
using namespace std;
int main()
{
int n;
int *nums = new int[n];
int i = 0;
int sum = 0;
cout << "请输入整数 n: ";
cin >> n;
cout << "请输入" << n << "个整数: ";
while (i < n)
{
cin >> nums[i];
i++;
}
while (--n >= 0)
{
if (nums[n] % 2 == 0)
sum += nums[n];
}
cout << "输入的整数中所有偶数的和为: " << sum << endl;
return 0;
}