gpt4 book ai didi

c - 为什么 1 > -1 看起来是假的?

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

我已经编写了以下代码,但问题是它没有显示所需的输出。

#include<stdio.h>
int main()
{
unsigned x=1;
signed char y=-1;
if(x>y)
printf("x>y\n");
else
printf("x<=y\n");

return 0;
}

上面的程序应该输出 x>y 因为第一个条件应该为真,因为 1 大于 -1 但它给出输出 x<=y。为什么 if 条件不成立?

最佳答案

由于从 signed char 到 unsigned int 的类型转换,程序给出了错误的输出。尽量避免 char 到 int 隐式类型转换。

关于c - 为什么 1 > -1 看起来是假的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25880722/

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