gpt4 book ai didi

c - 为什么我的命令窗口在传递标签时显示总线错误?

转载 作者:太空宇宙 更新时间:2023-11-04 04:15:13 24 4
gpt4 key购买 nike

我目前正在做一个学校项目,我们需要做一些排序,但是在我的代码中,我在运行 double 而不是单精度时遇到了总线错误

#include <stdio.h>
#include <string.h>

void singleprecision()
{
float x[21];
x[1] = 11.0f/2.0f; x[2] = 61.0f/11.0f;

int k = 3;
for (; k <= 10; k++)
{
x[k] = 111.0f-(1130.0f - 3000.0f/x[k-2])/x[k-1];
printf("x[%d]:%f\n",k,x[k]);
}
}



void doubleprecision()
{
double x[21];
x[1]=11.0/2.0;
x[2] = 61.0/11.0;

int k = 3;
for(; k<=20; k++);
{
x[k] = 111.0 - (1130.0 - 30000.0/x[k-2])/x[k-1];
printf("x[%d]:%lf\n",k,x[k]);
}
}


int main(int argc, char *argv[])
{
int i = 0; // will there be double precision used based on the g input in the command line

if (argc == 2 && strcmp(argv[1],"-d")==0) // checking for -g input on the command line
{
doubleprecision();
printf("Double Precision is being used \n");
}
else
{
printf("Single Precision is being used \n");
singleprecision();
}

return 0;
}

任何帮助都可以帮助我克服这个挑战并理解它。

我在远程 linux 系统上运行并使用 gcc 进行编译,它编译得很好,但在 double 时同样会失败。

最佳答案

在函数中:doubleprecision()删除无关的;从语句末尾开始:for(; k<=20; k++)然后代码运行没有问题。

关于c - 为什么我的命令窗口在传递标签时显示总线错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52938764/

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