为了账号安全,请及时绑定邮箱和手机立即绑定

请同学检查哪错了?

#include<stdlib.h>

#include<iostream>

using namespace std;

int getMaxorMin(int * arr, int count, bool isMax);

{

int temp = arr[0];

for (int i = 1; i < count; i++)

{

if (isMax)

{

if (temp < arr[i])

{

temp = arr[i];

}

}

else 

{

if (temp > arr[i])

{

temp = arr[i];

}

}

}

return temp;

}

int main(void)

{

int arr1[4] = [3, 5, 1, 7];

bool isMax = false;

cin >> isMax;

cout << getMaxorMin(arr1, 4, isMax) << endl;

system("pause");

return 0;

}

哪错了?

正在回答

2 回答

getMaxorMin函数后面不应该加分号

0 回复 有任何疑惑可以回复我~

表示数组的内容时,应使用大括号,而不是中括号。

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C++远征之起航篇
  • 参与学习       291032    人
  • 解答问题       760    个

C++亮点尽在其中,本课程是在C语言基础上的一个延伸,得以升华

进入课程

请同学检查哪错了?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信