gpt4 book ai didi

c++ - 没有错误,但运行时没有任何反应 (C++)

转载 作者:行者123 更新时间:2023-11-30 03:36:43 25 4
gpt4 key购买 nike

<分区>

从键盘读取 6 个数字并返回所有偶数之和的简单程序。但是当我运行它时,它不会打印任何东西,只是退出。

我在这里错过了什么? (我知道 vector 会更好,但我正在为期末练习,这是一个使用数组指定的旧期末考试问题)。

#include <iostream>

using namespace std;

void readNumbers();
void sumOfEven(int arr[6]);

int main(){
void readNumbers();
return 0;
}

void readNumbers(){
int myArray[6];
cout << "Enter 6 numbers:" << endl;
for(int i = 0; i < 6; i++){
cin >> myArray[i];
}
sumOfEven(myArray);
}

void sumOfEven(int arr[6]){
int sum = 0;
for(int i = 0; i <= 6; i++){
if(arr[i] % 2 == 0)
sum = sum + arr[i];
}
cout << "Sum of even numbers: " << sum;
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com