gpt4 book ai didi

c - 警告 : suggest parentheses around assignment used as truth value [-Wparentheses]

转载 作者:太空宇宙 更新时间:2023-11-04 07:09:17 25 4
gpt4 key购买 nike

  1. 程序片段是为素数提取而编写的。
  2. 如标题所示,编译器抛出了警告。

    while(count<=n)
    {
    for(c=2;c=(i-1);c++) //the warning is shown here
    {
    if(i%c==0)
    break;
    }
    if(c==i)
    {
    printf("%d ",i);
    count++;
    }
    i++;
    }

提前致谢!

最佳答案

if 的中间表达式语句通常是条件语句,例如 i < n .在您的情况下,这是一项作业。

编译器警告你,也许你犯了一个错误,你打算使用

c == (i-1)

代替

c = (i-1)

关于c - 警告 : suggest parentheses around assignment used as truth value [-Wparentheses],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29666204/

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