编制程序,输入n个整数(n从键盘输入,n>0),输出它们的偶数和。
输入:第一行n,代表n个整数 ,第二行以空格间隔,输入n个整数.
输出:为偶数的所有整数的和。
样例输入
2
1 2
样例输出
2
分析:太水的题。
1 #include <iostream> 2 using namespace std; 3 int main(){ 4 int n, ans = 0, t; 5 cin >> n; 6 while(n--){ 7 cin >> t; 8 if((t & 1) == 0) 9 ans += t; 10 } 11 cout << ans << endl; 12 return 0; 13 }