运行 ❯
获得您自己的网站
×
更改方向
更改主题,明暗色
转到 Spaces
#include <stdio.h> int main() { int x = 5; int y = 3; // Returns false (0) because ! (not) is used to reverse the result printf("%d", !(x > 3 && x < 10)); return 0; }
0