c++ - 寻找最低值(value)。功能。错误 : Thread 1: EXC_BAD_ACCESS (Code =1, 地址 = 0x7fff5fc89000)

标签 c++ function highest

我正在研究一个函数,用于在 5 个输入 double 值中找到最低值。我在网上找了一个引用。我尝试使用数组来编写代码,但收到以下错误:错误:线程 1:EXC_BAD_ACCESS(代码 =1,地址 = 0x7fff5fc89000)

你能告诉我我的代码哪里错了吗?欣赏它!

在线引用:

int findLowest(int s1, int s2, int s3, int s4, int s5)
{
         int lowest = s1; 
         
         
    if (s2 < lowest )        
         {
                  lowest = s2;
         }
         else if (s3 < lowest)
         {
                  lowest = s3;
         }
         else if (s4 < lowest)
    {
                  lowest = s4;
         }
         else if (s5 < lowest)
         {
                  lowest = s5;
         }
  
         cout << "The lowest test score is: " << lowest << endl;
  
    return lowest;
}

来源:http://cboard.cprogramming.com/cplusplus-programming/149549-lowest-score-drop-assignment.html

我的数组代码:

double findLowest(double a, double b, double c, double e, double f)
{
    // creating an array numberRange[] to read the 5 input double 
    //values
    double numberRange[5] = {a,b,c,e,f}; 

    // creating a variable minimum and assigning it the value of the 
    //first item in the numberRange[] array
    double minimum = numberRange[0];    

    // looping through the numberRange array
    for(int counter = 1; sizeof(numberRange)/sizeof(*numberRange) ; counter++ ) 
    // To get the number of elements in an array, you have to divide 
    // the size of the array by the size of each element
    {
         // checking if the numberRange value at the counter is less 
         // than the minimum value. If true, the minimum value is 
         //replaced with a new value.
        if ( numberRange[counter] < minimum ) 
        {
            minimum = numberRange[counter];
        }

    }

   return minimum;
}

错误:线程 1:EXC_BAD_ACCESS(代码 =1,地址 = 0x7fff5fc89000)

最佳答案

问题是你的 for 循环测试:

for(int counter = 1; sizeof(numberRange)/sizeof(*numberRange) ; counter++ )
//            this   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ is always true!

为什么不让它成为counter < 5

关于c++ - 寻找最低值(value)。功能。错误 : Thread 1: EXC_BAD_ACCESS (Code =1, 地址 = 0x7fff5fc89000),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37342348/

相关文章:

c++ - 如何动态更改 cv::Mat 图像尺寸?

c++ - 段错误和运算符重载

c++ - 从控制台应用程序启动窗口应用程序?

c - 3 未经排序的数组中的最大数字,我在哪里缺少逻辑?

flutter - flutter 地找出价格最高的ToDoItem的标题

c++ - 如何在不重复的情况下随机播放 char "abcdefghijklmnopqrstuvwxyz"

sql - 返回表与重复查询的函数

在 map 中使用局部函数时出现 Python ValueError

ios - 更改变量并将其发送到第二个 View Controller

SQLite 存在关键字 : How to query the highest average?